0

如何按左侧位置选择元素?

我想做这样的事情:

$(".timeline_item").find("Where left position === 300");
4

3 回答 3

3

这将返回所有.timeline_itemleft == 300

$(".timeline_item").filter(function() {
  return $(this).css("left") == 300;
});
于 2013-05-18T04:51:40.117 回答
0

你可以检查它.position()

$(".timeline_item").filter(function() {
  return $(this).position().left == 300;
});
于 2013-05-18T04:53:01.437 回答
0

像这样的东西应该工作

    $(".timeline_item").filter(function() {
  return $(this).css("left") == 300;
});
于 2013-05-18T04:53:22.570 回答