我有一个IMG标签,当放在一个区域时需要用文本框之类的输入元素替换。我能够克隆,拖放,添加我能够添加一个输入框,但我克隆的图像也来了。如何隐藏/删除图像?
这是我的代码:
$(document).ready(function() {
$( "#txtInpt" ).draggable({
appendTo: "body",
helper: "clone"
});
$( "#phone" ).droppable({
drop: function(event, ui) {
$( this ).find( ".placeholder" ).remove();
ui.draggable.clone().add('<input type="text">').appendTo(this);
}
});
});