我使用jquery进行拖放操作。这里我有问题需要将拖动内容(teacher1)放入特定区域。
jquery的:
$(document).ready(function() {
//var a ='1';
$(".list").draggable({
helper: 'clone',
cursor: 'hand',
revert: true,
drag: function(ev, ui) {
dragId = $(this).attr('id');
//alert(dragId);
/* if (dragId==1) {
dragClass = "drop1";
}
*/ /*else {
alert('Hi');
}*/
}
});
$(".drop1").droppable({
accept: ".list",
activeClass: 'drop-active',
hoverClass: 'dropareahover',
drop: function(ev, ui){
//var dropDragId = ui.draggable.attr('id');
//alert(dropDragId)
var targetId = $(this).attr("id");
$("#" + targetId).each(function() {
$(this).append(ui.draggable.text());
});
},
destroy: function(ev, ui) {
}
});
});
</script>
HTML:
<div class="draggable">
<ul>
<li class="list" id="1">Teacher1</li>
<li class="list" id="2">Teacher2</li>
<li class="list" id="3">Teacher3</li>
<li class="list" id="4">Teacher4</li>
</ul>
</div>
<div class="drop">
<table class="tble">
<tr>
<td id="td1" class="drop1 br">Vocational</td>
<td id="td2" class="drop br">English<br /></td>
<td id="td3" class="drop1 br">Mathematics<br /></td>
<td id="td4" class="drop br">French<br /></td>
</tr>
<tr>
<td id="td1a" class="drop br">Hindi</td>
<td id="td2a" class="drop br">Science<br /></td>
<td id="td3a" class="drop br">PTE<br /></td>
<td id="td4a" class="drop br">Social Science<br /></td>
</tr>
</table>
</div>
的CSS:
<style type="text/css">
.draggable {
width:400px;
height:auto;
border:solid 1px #ccc;
}
.dropareahover {
background-color:#EFD2A4;
border-color:#DFA853;
}
.drop-active {
background: #ffff99;
}
.draggable ul {
margin:0px;
padding:0px;
}
.draggable ul li {
list-style-type:none;
}
.drop {
width:400px;
height:auto;
margin:10px 0px 0px 0px;
border:solid 1px #ccc;
}
.drop1 {
border:solid 1px #CCCCCC;
width:100px;
}
.drop ul {
margin:0px;
padding:0px;
}
.drop ul li {
list-style-type:none;
}
.tble{border-collapse:collapse;}
.tble td{text-align:center;}
</style>
我需要放置拖动内容(teacher1)并放入职业和印地语,但不是数学。再次拖动teacher2内容并放入英语,但不是其他单元格。
我做了一些工作。但我无法将老师2放入特定区域。请帮帮我。答案 0 :(得分:0)
据我了解,您需要为每个过滤器创建一个不同的拖放区域
使用http://jqueryui.com/demos/droppable/#accepted-elements,您可以创建4个删除区域,每个区域都接受一个特殊的类。
hindu只接受那些带有“.hindu”
的人PTE只接受“.PTE”
的人我希望这会有所帮助