2
這裏我jQuery的:jQuery的 - 拖放到特定區域
$(".list").draggable({helper: 'clone', cursor: 'hand'});
$(".drop1").droppable({
accept: '.list',
hoverClass: 'dropareahover',
drop: function(ev, ui){
var targetId = $(this).attr("id");
var allTargets = $("#" + targetId, ".tble");
$("#" + targetId).each(function() {
//here i have to write the conditions.
});
}
});
我需要的內容到特定的區位。如果我把內容放在其他區域。它不會接受。
請具體談談你的問題是什麼? –