左の位置で要素を選択するにはどうすればよいですか?
私はこのようなことをしたい:
$(".timeline_item").find("Where left position === 300");
左の位置で要素を選択するにはどうすればよいですか?
私はこのようなことをしたい:
$(".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;
});