如果我創建這樣一個DIV:如何獲得元素的CSS(%對PX)
something = $("<div/>", { id: "something" }).css({
width: "100%",
background: "#333333",
height: "3px",
position: "relative",
"-moz-box-sizing": "content-box"
});
,並嘗試與其中任一拿到寬度:
console.log(something.width());
console.log(something.css("width"));
它只返回100.對於我的場景,我有時會使用百分比或特定數量的像素。
如何確定元素的寬度是百分比還是指定的像素量?
http:// stackove可能的重複rflow.com/questions/7786972/how-to-determine-if-width-has-px-or或 –