jQuery:如何获取元素“position”的style属性?

时间:2013-05-13 19:26:17

标签: javascript jquery css

在jQuery(或JavaScript)中为DOM中的元素获取样式属性“position”的正确标记是什么?

示例:

HTML

<div id="Parent">
    Parent Element
    <ul class="child">
        <li>
            <p>inner child elements</p>
        </li>
    </ul>
</div>

CSS

#Parent {
    position: relative;
}
.child {
    position: absolute;
}

的JavaScript:

$(function() {
    //  What to type here to get "style attribute position" of say #Parent?
})

2 个答案:

答案 0 :(得分:8)

$('#someElementID').css('position');

http://api.jquery.com/css/

答案 1 :(得分:2)

在jQuery中使用它:

$(element).css("position");

还有更多:

$(element).offset();
$(element).offset().top;
$(element).offset().left;