在我尝试构建某些东西之前,我想知道那里是否有这样的东西?用于操作css大小字符串的实用程序(例如" 50%"," 50px"等)。我使用CssSize作为例子:
var ht1 = new CssSize("100px");
var ht2 = new CssSize("50px");
var h3 = ht2 - h1;
var val = h3.toString(); // "50px"
var isFixdSiz = h3.isFixedSize(); // true
----
var ht1 = new CssSize("100%");
var ht2 = new CssSize("40%");
var h3 = ht2 - h1; // Similarly a + equivalent.
var val = h3.toString(); // "60%"
var isPercSiz = h3.isPercSize(); // true
----
var isPerc = CssSize.IsPerc("50%"); // true
isPerc = CssSize.IsPerc("50"); // false
isPerc = CssSize.IsPerc("abcd"); // false
isFixed = CssSize.IsFixed("50px"); // true