我有保证金的div:auto;我需要使用
javascript获得只有margin-left大小的值:)
//css .test{ margin: auto; width: 100px; height: 100px; outline: 1px solid red; } // html <div class="test">Test</div>
解决方法
用这个:
1)使用jQuery
var left = $(".test").offset().left;
2)或者,第二个版本是:
将您的div替换为< div class =“test”id =“test”>< / div>,然后使用此js.
var left = document.getElementById("test").offsetLeft;