有谁知道,第一次加载时我有一个 div 元素,我将其属性设置为right:0
and bottom:0
; 我想得到它style.left
,但它返回NaN
。那么如何获得它或有其他方法?
<div id="myDiv">Sample</div>
<script type="text/javascript">
var setMe = document.getElementById("myDiv");
setMe.setAttribute("style", "background-color: red;
position: absolute;
width: 670px;
height: 370px;
right: 0;
bottom: 0;");
alert(setMe.style.left)
</script>