javascript 代码将通过谷歌浏览器中的 url 栏从 www.example.com 启动,因此我无法使用 jquery。我的目标是当我在 www.example.com 中启动代码时,将 www.example.com/page.html 的完整 html 源代码传递给 javascript 中的变量。这可能吗?如果有怎么办?我知道获取当前页面源只是document.documentElement.outerHTML
但我不确定我会如何做到这一点。我认为可以通过responseText
在以下代码中的某处使用:
http.send(params);
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","http://www.example.com/page.html",true);
xmlhttp.send();