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

时间:2011-09-13 20:32:39

标签: jquery jquery-ui draggable jquery-ui-draggable

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

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

谢谢,

2 个答案:

答案 0 :(得分:6)

我不想这么说,但是RTFD:

  

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

     
      
  • ui.helper - 表示正在拖动的帮助程序的jQuery对象
  •   
  • ui.position - 帮助者当前位置{top,left}对象,相对于偏移元素
  •   
  • ui.offset - 帮助器当前绝对位置{top,left}对象,相对于页面
  •   

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

答案 1 :(得分:1)

OptionsEvents 读了