我正在使用jQuery $('selector')。css('top')来获取帮助定位动态元素的最高值,我发现基于浏览器会得到不同的结果。
如果选择器样式设置为top:5%
Firefox返回5%。
IE 7,8,9会返回一个像素值,该值会根据浏览器屏幕的宽度(哇)而变化。
Chrome返回“自动”。
在以下测试html中, firefox返回:
m1 - 5%
m2 - 100%
m3 - 100px
IE 7,8,9返回:
m1 - 25px
m2 - 509px
m3 - 100px
如果我扩大了屏幕,IE会返回:
m1 - 49px
m2 - 977px
m3 - 100px
Chrome返回:
m1 - auto
m2 - auto
m3 - auto
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<style type="text/css">
#m1 {top:5%;}
#m2 {top:100%;}
#m3 {top:100px;}
</style>
<title>CSS Test</title>
</head>
<body>
<div class="m" id='m1'>m1</div>
<div class="m" id='m2'>m2</div>
<div class="m" id='m3'>m3</div>
<script type="text/javascript">
function get_css() {
var output = "";
$('.m').each(function(){
output += $(this).html() + ' - ' +$(this).css('top')+ "<br />";
});
$('#output').html(output);
}
</script>
<br /><input type='button' name='get_css' value="css('top')" onclick="get_css()"/>
<p><div id='output'></div></p>
</body>
</html>
答案 0 :(得分:7)
使用$('selector').offset().top
获取top
位置的数值。
.css()
返回顶部位置的CSS值,可以是auto
,1234px
或类似的东西 - 不是获得最高职位的可靠方法。
另见:
答案 1 :(得分:0)
问题是,您的测试元素实际上没有动态定位。请参阅此问题:jQuery .css("left") returns "auto" instead of actual value in Chrome