1
我從另一個頁面的類別與ajax調用。問題是,從另一個頁面獲取的數據需要成爲另一個事件的一部分;標籤插件。綁定插件ajax調用
我收到以下錯誤代碼。
$.ajax({
dataType: "xml",
success: function(xml) {
$(xml).find('row').each(function(){
var id = $(this).attr('id');
var CategoryName = $(this).find('CategoryName');
});
}
}).live('click', function() {
$("div.row-title").tabs("div.redpanes > div");
});
我如何讓它工作呢? – zurna 2010-04-03 18:52:21
Urrr ...閱讀我的代碼片段? – Matt 2010-04-03 18:55:43