我从服务器端返回 text/html: <img title="Hello World">
。我的意图是在 ajax 成功回调函数中检索该标题(我正在使用 jquery 表单插件):
options_ie['success'] = function(data,statusText,xhr,form) {
// How can I get title from "data"?
}
我无法返回 json,因为 IE<10 将 json 响应视为文件下载。对于 FF 和 Chrome,我只需返回 json 并毫无问题地处理数据。