3
我有一個IMG標籤,需要被放置在某個區域時,像輸入文本框這樣的輸入元素替換。我可以克隆,拖放,通過添加我可以添加一個輸入框,但我克隆的圖像也到了那裏。我怎樣才能隱藏/刪除圖像?當在一個區域上放置jQuery元素時交換元素?
這裏是我的代碼:
$(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);
}
});
});