表我beginer到js和jQuery和我需要一點點的幫助,如果有人能幫助我...將DIV從側邊欄與jQuery UI的
我要做些什麼?
我想將div從側欄拖到表格中。在側邊欄div必須只能拖動到表格。當我將div拖放到表格中時,表格中的div必須可以調整大小並再次拖動。
照片:
我嘗試用這個代碼,但不工作得很好:
$(function() {
$(".draggable").resizable();
$(".draggable").draggable({revert: 'invalid', helper:'clone', snap: "#drop_here td", opacity: 0.7});
$("#drop_here td").droppable({
accept: '.draggable',
drop: function(event, ui) {
$(this)
.find("p")
.html("Dropped!");
}
});
});
DEMO及源代碼:http://jsbin.com/erofot/17/edit | http://jsbin.com/erofot/17
我這麼想嗎?這不正是你的代碼已經在做什麼?還是我錯了什麼? – rusln
是的,但我不能克隆元素,我拖動原始元素:) –