使用 jQueryUI 的可调整大小时,如何禁用调整大小时的单击事件?

发布于 2024-12-08 16:45:21 字数 706 浏览 0 评论 0原文

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文