JQuery可删除问题

发布于 2024-09-24 07:50:16 字数 815 浏览 6 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

裸钻 2024-10-01 07:50:16

原来我的 JQuery 库有问题。感谢尼克进行测试。

Turns out there was a problem with my JQuery libraries. Thanks Nick for testing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文