Jquery UI 中回调函数的参数是什么

发布于 2024-12-04 23:03:44 字数 263 浏览 0 评论 0原文

我正在使用jquery UI中的draggable, 我想知道 UI 参数有什么,因为我想知道调用 stop() 回调函数的句柄位置。

然后我想设置一个值以将可拖动对象移动到特定位置。知道了这一点,我该如何设置该值(如滑块)。 http://jqueryui.com/demos/slider/#option-value

谢谢,

I'm using draggable from jquery UI,
I want to know what does UI argument has, because I want to know the handle position calling the stop() callback function.

Then I want to set an value to move the draggable to a specific position. Knowing that, how can I set the value, (like slider). http://jqueryui.com/demos/slider/#option-value

Thanks,

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

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

发布评论

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

评论(2

忘东忘西忘不掉你 2024-12-11 23:03:44

我不想这么说,但 RTFD:

所有回调(开始、停止、拖动)都会接收两个参数:原始浏览器事件和准备好的 ui 对象,请查看下面的该对象的文档(如果将第二个参数命名为“ui”):

  • ui.helper - 代表正在拖动的助手的 jQuery 对象
  • ui.position - 辅助对象作为 { top, left } 对象的当前位置,相对于偏移元素
  • ui.offset - 助手作为 { top, left } 对象的当前绝对位置,相对于页面

http://jqueryui.com/demos/draggable/

I hate to say it, but RTFD:

All callbacks (start, stop, drag) receive two arguments: The original browser event and a prepared ui object, view below for a documentation of this object (if you name your second argument 'ui'):

  • ui.helper - the jQuery object representing the helper that's being dragged
  • ui.position - current position of the helper as { top, left } object, relative to the offset element
  • ui.offset - current absolute position of the helper as { top, left } object, relative to page

http://jqueryui.com/demos/draggable/

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