我正在使用 jQuery get 方法加载 html 的数据以存储到我的数组中,为此我使用此方法:
var temps = function(views){
var tempts = [];
$.each(views, function(i,view){
if(view){
tempts.push($.get("templates/" + view + ".html"), function(data){
console.log(data);//i am not getting response text.. getting array object.
})
}
})
当我控制数据时,我得到一个数组对象,如下所示:
[Object { readyState= 4, responseText="<div id="login">\n <form...eldset>\n </form>\n</div>", status=200, more...}, function()]
这里有什么问题...如何直接获取响应文本..?