<div id="xx" style="bottom:20px;"></div>
如何获得#xx
答案 0 :(得分:5)
您可以使用
document.getElementById('xx').style.bottom;
您将获得字符串'20px'
。
如果你想将它作为一个数字,你将不得不解析它:
var nb = parseInt(document.getElementById('xx').style.bottom, 10);
答案 1 :(得分:3)
在jQuery中:
$('#xx').css('bottom');