我有有5個LI
元素一個UL
元素:如何從元素的像素頂部獲取位置?
ul{
width: 200px;
height: 100%;
padding: 0;
margin: 0;
overflow-y: auto;
overflow-x: hidden;
list-style: none;
margin-left: 3px;
}
li{
position: relative;
height: 50px;
width: 193px;
left: 0;
right: 0;
margin: 10px 0;
cursor: pointer;
}
我想從UL
頂部獲得每LI
的頂部像素值,但是當我使用此代碼:
$('ul li').each(function(){
console.log($(this).css('top'));
});
它只是告訴我這個:'auto'
,爲什麼?
是的我的朋友們:D – kasiri182