我正在尝试创建一个脚本,其中元素可以在容器中移动,并且可以添加到容器中并通过单击移动然后通过双击移除。我让更改类从.item到.drag工作,但是一旦它假设新类,它就不会拖动。我正在使用jQuery插件:http://threedubmedia.com/。任何帮助它移动以及在双击功能中放置的位置和方式都会很棒!提前谢谢!!
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src="./js/jquery.event.drag-2.2.js" ></script>
<script src="./js/jquery.event.drag.live-2.2.js" ></script>
<script type="text/javascript">
jQuery(function($){
var $div = $('#container');
$('.drag')
.drag("start",function( ev, dd ){
dd.limit = $div.offset();
dd.limit.bottom = dd.limit.top + $div.outerHeight() - $( this ).outerHeight();
dd.limit.right = dd.limit.left + $div.outerWidth() - $( this ).outerWidth();
})
.drag(function( ev, dd ){
$( this ).css({
top: Math.min( dd.limit.bottom, Math.max( dd.limit.top, dd.offsetY ) ),
left: Math.min( dd.limit.right, Math.max( dd.limit.left, dd.offsetX ) )
});
});
});
$(document).ready(function(){
$('.item').click(function(){
$(this).removeClass('item');
$(this).addClass('drag');
});
});
</script>
<div id="container"></div>
<div class="drag" style="left:40px;"></div>
<div class="drag" style="left:120px;"></div>
<div class="drag" style="left:200px;"></div>
<div class="item" style="left:280px;"></div>
<style type="text/css">
.drag {
position: absolute;
border: 1px solid #89B;
background: #BCE;
height: 58px;
width: 58px;
cursor: move;
top: 120px;
}
#container {
height: 299px;
border: 1px dashed #888;
}
.item {
height: 58px;
width: 58px;
background: #000;
}
</style>
答案 0 :(得分:1)
这样做的原因是拖拽事件处理程序是在类.item的div不是.drag的时候应用的。之后,当它发生变化时...事件处理程序不会自动应用。
您最好的选择是使用不同的选择器来应用拖动事件。也许不是&#39; .drag&#39;使用&#39; #container div&#39;
您还可以查看您使用的可拖动插件是否支持jQuery on()http://api.jquery.com/on/