1

<div id="xx" style="bottom:20px;"></div>

我如何获得的底值#xx

4

2 回答 2

5

您可以使用

document.getElementById('xx').style.bottom;

你会得到字符串'20px'

如果你想要它作为一个数字,你将不得不解析它:

var nb = parseInt(document.getElementById('xx').style.bottom, 10);
于 2013-03-28T19:55:33.300 回答
3

在 jQuery 中:

$('#xx').css('bottom');
于 2013-03-28T19:56:47.873 回答