所有XML,更新的DIV使用jQuery
我知道這是愚蠢的簡單,但...
我使用jQuery。我發現了一個XML文檔,這樣
$.ajax({
type: verb,
url: url,
dataType: datatype,
success: callback
})
}
在我回電話我想,這樣看起來很好格式化XML以更新指定的ID =「UpdateMe」,結果格。
這是我的psudeo代碼來顯示結果。
function update_me_with_response(data){
//I make it here just fine with no problems.
//The following line is totally not working any ideas?
$("#ajaxer_output").text(data.text.escapeHTML());
}