在Tritium中,我可以选择节点的所有子节点吗?

时间:2014-04-16 16:22:06

标签: moovweb tritium

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

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

1 个答案:

答案 0 :(得分:2)

选择直系孩子有几种不同的方式。

首先你可以这样做:

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

处理此问题的另一种方法是在move_children_to()

上打开一个范围
move_children_to("..", "after) {
  # children code can go here.
}

我希望这有帮助!如果我能提供更多帮助,请告诉我。