We'd like to convert a CSS style entered as string into a JS object.
E.g.,
var input = " border:solid 1px; color:red ";
expected JS object :
{
border:"solid 1px",
color:"red"
}
Of course the number of style entries is unlimited as well as the names of style (border, color, font, z-index, etc...). Thx.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…