複製された要素の値を空白にする必要があります。
以下のコードはうまく機能しますが、値を複製しています。それを止める方法がわかりません。
var Move = {
copy : function(e, target) {
var eId = $(e);
var copyE = eId.cloneNode(true);
var cLength = copyE.childNodes.length -1;
copyE.id = e+'-copy';
for(var i = 0; cLength >= i; i++) {
if(copyE.childNodes[i].id) {
var cNode = copyE.childNodes[i];
var firstId = cNode.id;
cNode.value = '';
cNode.id = firstId+'-copy'; }
}
$('txtWoundCareLocation').value="";
$(target).appendChild(copyE);
},
element : function(e, target, type) {
var eId = $(e);
if(type == 'move') { $(target).appendChild(eId); }
else if(type == 'copy') {
this.copy(e, target);
}
}
}