我想制作一个Chrome扩展程序,从此网站获取HTML代码:https://free-proxy-list.net/ 没有真正去那个网页。
我尝试使用这里的步骤: https://developer.chrome.com/extensions/xhr 但是当我试图将它打印出来时,请求仍然显示为未定义。
我使用的脚本是:
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
alert(xhr.responseText);
}
}
xhr.open('GET', "url", true);
xhr.send(null);
document.write(xhr.send());
注意:不要将url放在代码中,因为SO不会让我发布超过2个链接的问题。
如何从我可以解析的字符串变量中获取此网站的代码?