使用 jQueryUI 的可调整大小时,如何禁用调整大小时的单击事件?
我正在使用 jQuery 和 jQueryUI 构建一个界面,我的东西看起来像这样,
<div id="sidebar">
<div id="handle">
</div>
</div>
然后我在 document.ready 上运行这个 javascript
$("#sidebar").resizable({
handles: { e: '#handle' }
});
$("#sidebar").bind('resizestart', function() { console.log("Resize started") });
$("#sidebar").bind('resizestop', function() { console.log("Resize stopped") });
$("#handle").bind('click', function() { console.log("Hide Sidebar") });
我的问题是 #handle 上的单击事件在调整大小事件后被触发。我知道我需要以某种方式在拖动期间禁用单击事件,但即使取消绑定 Dragstart 上的单击并在 Dragstop 上重新绑定它也不会阻止单击事件触发。
ps。请忽略任何小的语法错误,我使用coffeescript太久了,一切都确实有效,只是不是我想要的那样
I am building an interface with jQuery and jQueryUI and I something that looks like this
<div id="sidebar">
<div id="handle">
</div>
</div>
I then have this javascript running on document.ready
$("#sidebar").resizable({
handles: { e: '#handle' }
});
$("#sidebar").bind('resizestart', function() { console.log("Resize started") });
$("#sidebar").bind('resizestop', function() { console.log("Resize stopped") });
$("#handle").bind('click', function() { console.log("Hide Sidebar") });
My problem is that the click event on #handle is being fired after the resizing events. I know I need to somehow disable the click event for the duration of the drag, but even unbinding click on dragstart and rebinding it on dragstop doesn't stop the click event from firing.
ps. Please ignore any small syntax errors, I have been using coffeescript for too long, everything does actually work, just not how I want it to
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论