以下の貼り付けられたコードは、チェックボックスをオンにすると、要素をある<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.
}
}
});