下面粘贴的代码将在选中复选框时将一个<table>
元素从一个复制<div>
到另一个。但是当复选框未选中<div>
时,我如何删除相同的元素。
$(":checkbox").on('change', function () {
if ($(this).hasClass('containerToCopy')) {
if ($(this).is(':checked')) {
$(this).closest('div').clone().appendTo("#divTestPrintContainer");
} else {
// if #divTestPrintContainer contains the element associated with the checkbox then remove it.
}
}
});