当我对元素使用可拖动时,单击功能不起作用
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是因为点击事件需要鼠标向下和向上。如果你拖拽,那永远不会触发。尝试改用 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.