JQuery可删除问题
我在使用 JQuery 的可删除功能时遇到问题。 我从这里修改了JS: http://jqueryui.com/demos/droppable/
<script type="text/javascript">
$(function() {
$("ul.draggable li").draggable();
$("div.droppable").droppable({
drop: function(event, ui) {
alert('Hello World');
}
});
});
</script>
<ul class="draggable">
<li id="one">One</li>
<li id="two">Two</li>
<li id="three">Three</li>
</ul>
<div class="droppable">
<p id="round">Drop here</p>
</div>
JQuery如果我将draggable和droppable设置为HTML元素的ID,则效果很好。
但是,当它们是类时,只有draggable功能起作用,drop功能似乎没有做任何事情,并且警报功能不会被执行。
任何帮助都会很棒。
I'm having trouble with the JQuery's droppable feature.
I have modified JS from here: http://jqueryui.com/demos/droppable/
<script type="text/javascript">
$(function() {
$("ul.draggable li").draggable();
$("div.droppable").droppable({
drop: function(event, ui) {
alert('Hello World');
}
});
});
</script>
<ul class="draggable">
<li id="one">One</li>
<li id="two">Two</li>
<li id="three">Three</li>
</ul>
<div class="droppable">
<p id="round">Drop here</p>
</div>
The JQuery works fine if I set draggable and droppable as IDs of the HTML elements.
However when they're classes only the draggable functionality works, the drop feature doesn't seem to do anything, and the alert function does not get executed.
Any help would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原来我的 JQuery 库有问题。感谢尼克进行测试。
Turns out there was a problem with my JQuery libraries. Thanks Nick for testing.