,而不是在標準的方式編寫代碼:jQuery的回調函數
$.get('test.xml',function(){
//manipulate the code here
})
我想這種方式把事情寫代碼更容易:
$.get('test.xml',callback(data));
function callback(data){
//manipulate with the data below...
}
但錯誤顯示「數據不確定」 , 我怎樣才能解決這個問題?
感謝所有的答案和註釋變量! – webberpuma 2010-07-01 15:35:37