这就是我想做的。我想在指向外部网站的 javascript 中创建一个隐藏的 iframe,然后使用 javascript 将该隐藏 iframe 的 html 源代码获取到文本框中并作为变量(如果 iframe 未加载并询问用户,可能会进行一些错误检查重新加载...)到目前为止,我尝试了这个,但是如何隐藏它并从中读取源代码?提前致谢。
<script language="JavaScript" type="text/javascript">
ifrm = document.createElement("IFRAME");
ifrm.setAttribute("src", "http://www.somesite.com/");
ifrm.style.width = 640+"px";
ifrm.style.height = 480+"px";
document.body.appendChild(ifrm);
</script>