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();