0

我有一个有几个子 div 的 div。有些有 ID 和类,有些没有。

我使用了 move_children_to() 并且想知道是否有类似的东西可以选择孩子。

4

1 回答 1

2

有几种不同的方法可以选择直系子代。

首先你可以这样做:

$("./*") {
  # code for children goes here.
}
move_children_to("..", "after)

处理这个问题的另一种方法是只打开一个范围move_children_to()

move_children_to("..", "after) {
  # children code can go here.
}

我希望这有帮助!让我知道我是否可以提供更多帮助。

于 2014-04-17T20:31:34.087 回答