如何从使用 ajax 请求检索的 html 字符串创建文档对象。
$.ajax({
url: mylist.url, //url to a webpage
cache: false,
}).done(function(webpage) {
var doc = document.implementation.createHTMLDocument(webpage) //this doesn't work
});
如何从使用 ajax 请求检索的 html 字符串创建文档对象。
$.ajax({
url: mylist.url, //url to a webpage
cache: false,
}).done(function(webpage) {
var doc = document.implementation.createHTMLDocument(webpage) //this doesn't work
});