如何通過左側位置選擇元素?jQuery:通過知道它的左側位置來選擇元素
我想要做這樣的事情:
$(".timeline_item").find("Where left position === 300");
如何通過左側位置選擇元素?jQuery:通過知道它的左側位置來選擇元素
我想要做這樣的事情:
$(".timeline_item").find("Where left position === 300");
這將返回所有.timeline_item
左== 300
$(".timeline_item").filter(function() {
return $(this).css("left") == 300;
});
您可以用.position()
檢查:
$(".timeline_item").filter(function() {
return $(this).position().left == 300;
});
像這樣的東西應該工作
$(".timeline_item").filter(function() {
return $(this).css("left") == 300;
});
謝謝你。我不知道過濾器存在。很酷的東西! –