joomla 3.0中的ajax调用代码我使用以下方法调用
function myAjaxCall1(surl, method, response_divid) {
var req = new Request({
method : 'POST',
url : surl,
data : method,
onRequest : function() {
document.getElementById(response_divid).innerHTML = '<span id="loading_img"></span>';
return false;
},
onComplete : function(response) {
document.getElementById(response_divid).innerHTML += response;
}
}).send();
}
但它回放了HTML标签,即使我在url tmpl = component
中使用了