当我对元素使用可拖动时,单击功能不起作用

发布于 2024-10-19 10:23:27 字数 363 浏览 1 评论 0原文

我正在使用 jquery 对元素使用可拖动功能。当我使用此功能时,单击功能不起作用。为什么会这样以及如何删除此错误?请帮助我

// Reizable and draggable for the YOUTUBE widget**************
$(function() {
    $( "#youtube" ).draggable(
        {cursor: 'move'}
    );

    $( "#youtube" ).resizable({
        ghost: true,
        alsoResize: '#player',
        handles: "n, e, s, w"
    });
});

I am using the draggable function for the element using jquery..when I use this the click function is not working on that..why is that and how to remove this bug? pls help me

// Reizable and draggable for the YOUTUBE widget**************
$(function() {
    $( "#youtube" ).draggable(
        {cursor: 'move'}
    );

    $( "#youtube" ).resizable({
        ghost: true,
        alsoResize: '#player',
        handles: "n, e, s, w"
    });
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

何以畏孤独 2024-10-26 10:23:27

可能是因为点击事件需要鼠标向下和向上。如果你拖拽,那永远不会触发。尝试改用 mousedown 事件。

probably because the click event requires the mouse to go down and up. if you're dragging, that never fires. Try using the mousedown event instead.

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