在jQuery(或JavaScript)中为DOM中的元素获取样式属性“position”的正确标记是什么?
示例:
<div id="Parent">
Parent Element
<ul class="child">
<li>
<p>inner child elements</p>
</li>
</ul>
</div>
#Parent {
position: relative;
}
.child {
position: absolute;
}
$(function() {
// What to type here to get "style attribute position" of say #Parent?
})
答案 0 :(得分:8)
$('#someElementID').css('position');
答案 1 :(得分:2)
在jQuery中使用它:
$(element).css("position");
还有更多:
$(element).offset();
$(element).offset().top;
$(element).offset().left;