-1
select: function(event, ui) {
}
我在哪裏可以找到jquery提供給使用jquery ui的方法的UI參數的所有屬性和方法?我在哪裏可以找到jQuery UI的所有屬性。項目
select: function(event, ui) {
}
我在哪裏可以找到jquery提供給使用jquery ui的方法的UI參數的所有屬性和方法?我在哪裏可以找到jQuery UI的所有屬性。項目
在the documentation。例如,如果您正在查看change
event of the autocompleter,您會看到ui
有一個item
屬性,它是「...從菜單中選擇的項目(如果有),否則屬性爲null
。」但是,如果您正在查看slide
event of the Slider widget,您會看到ui
有handle
,value
和values
。
http://ui-dev.jquery.com/demos/draggable/ – James 2013-04-29 15:38:20
這取決於事件是什麼。閱讀文檔。例如:http://api.jqueryui.com/1.9/menu/#event-select – 2013-04-29 15:39:14
我認爲在chrome開發工具中進行檢查會給你一個很好的細分,這是針對你的情況的。 – 2013-04-29 15:40:14