怎么来的
ajaxFunction().done(function(p){
console.log(p);
});
dataType
以 ajaxFunction中指定的 HTML 格式返回数据,但是
var data = ajaxFunction().done(function(p){
console.log(data)
//returns what appears to be the entire deferred object
//to see the returned HTML string, I have to do console.log(data.responseText);
});
一旦我将它存储在数据中,拥有该对象的实际应用是什么?我可以用它做进一步的事情吗?还是不打算这样使用?