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.
如何让 jquery 将所有具有特定类的 div 放入容器中?我想要一个可以动态移动 div 的函数。这样当 div 获取新类时,它会自动移动到此容器中。
这可能吗?
要移动它们:
$("#yourContainer").append( $("div.yourClass") );
或者,为了避免接触已经在容器中的那些:
$("#yourContainer").append($("div.yourClass").not("#yourContainer div.yourClass"));
对于 DOM 中已经存在的元素,该.append()方法将它们移动到您指定的新父级。
.append()
我不知道由班级更改触发的事件,所以我不确定要让它自动发生,我有什么建议。