如何按左侧位置选择元素?
我想做这样的事情:
$(".timeline_item").find("Where left position === 300");
如何按左侧位置选择元素?
我想做这样的事情:
$(".timeline_item").find("Where left position === 300");
这将返回所有.timeline_item
left == 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;
});