1
我在litle麻煩試圖獲取有關由jQuery排序的事件的信息。jQuery可排序的事件 - 未定義的參數
我有這樣的代碼工作:
var sortable = $("#datatable-wrapper #example tbody").sortable({
cursor: "move",
tolerance: 'pointer',
});
sortable.bind("sortout",function(e, ui) {
for(i in e)
alert("e."+i+" : " + e.i);
for(i in ui)
alert("ui."+i+" : " + ui.i);
for(i in this)
alert("this."+i+" : " + this.i);
for(i in $(this))
alert("$(this)."+i+" : " + $(this).i);
});
的問題是:我總是得到這樣的:
e.SomeProp : undefined //same for ui, this, and $(this)
這說明我這些對象的結構,但這些propertys的定義。我做錯了什麼 ?
提前致謝。
你在'$(document).ready(function(){...})裏面做這個嗎? – iMatoria 2011-05-17 09:26:10