我有一个div
,其中包含大约100个其他div
个元素。每个div
元素都有top
和left
个属性。如何找到div
属性最大的left
?
我需要最好的表现。谢谢。
答案 0 :(得分:3)
试试这个,
<强> Live Demo 强>
var divWithTopLeft = null;
var maxLeft = 0;
$('div').each(function(){
left = this.style.left.replace('px','');
if(left > maxLeft )
{
maxLeft = left;
divWithTopLeft = this;
}
});