这是我的项目的代码和DEMO:http: //jsbin.com/erofot/1
我想做的事?
我希望用户只能将 .draggabledivs 移动到表中(table/.dropable div) 我希望用户可以在 table(days) 之间水平移动 div。
<script>
$(function() {
$( ".draggable" ).resizable();
$( ".draggable" ).draggable({
helper: "clone"});
$( "#droppable" ).droppable({
drop: function( event, ui ) {
$( this )
.addClass( "ui-state-highlight" )
.find( "p" )
.html( "Dropped!" );
}
});
});
</script>