Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个有几个子 div 的 div。有些有 ID 和类,有些没有。
我使用了 move_children_to() 并且想知道是否有类似的东西可以选择孩子。
有几种不同的方法可以选择直系子代。
首先你可以这样做:
$("./*") { # code for children goes here. } move_children_to("..", "after)
处理这个问题的另一种方法是只打开一个范围move_children_to()
move_children_to()
move_children_to("..", "after) { # children code can go here. }
我希望这有帮助!让我知道我是否可以提供更多帮助。