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。
var clone = $(this).parent().parent().clone(true);
但我想删除克隆中的一个 div。
如果您的 div 具有唯一 ID,您可以在最后添加更多方法。
var clone = $(this).parent().parent().clone(true).find('div#id_name').remove();