我有一个有几个子div的div。有些人有ID和类,有些没有。
我使用了move_children_to()并且想知道是否有类似的选择孩子。
答案 0 :(得分:2)
选择直系孩子有几种不同的方式。
首先你可以这样做:
$("./*") {
# code for children goes here.
}
move_children_to("..", "after)
处理此问题的另一种方法是在move_children_to()
move_children_to("..", "after) {
# children code can go here.
}
我希望这有帮助!如果我能提供更多帮助,请告诉我。