FF或将支持返回一个HTML文档对象
详见这里:Bug 651072 - Support HTML parsing in XMLHttpRequest per XMLHttpRequest Level 2
假想代码:
function getDocument (aURL, aCallback) {
var xhr = new XMLHttpRequest;
xhr.open("GET", aURL, true);
xhr.responseType = "document";
xhr.onreadystatechange = function() {
if (xhr.readyState === xhr.DONE /* 4 */ &&
xhr.status === 200) {
aCallback(xhr.response);
}
};
xhr.send(null);
}
getDocument("http://www.example.com", function (doc) {
console.log(doc.querySelector("h1").innerHTML);
});
从这趋势来看,末来许多要用类库实现的东西,浏览器都给你内置了。
机器瞎学/数据掩埋/模式混淆/人工智障/深度遗忘/神经掉线/计算机幻觉/专注单身二十五年
浙公网安备 33010602011771号