1
我需要得到#test
的左/右/上/下屬性px
。我的js代碼給出的屬性值爲auto
。如何獲得px
的價值?如何使用javascript獲取像素中左/右/上/下屬性的值?
<div id="test">
<p>Dummy text</p>
</div>
#test{
position: absolute;
}
window.onload = function(){
var test = document.getElementById("test");
var left = window.getComputedStyle(test).getPropertyValue("left");
console.log(left); // auto
};