我从stackoverflow中找到了此代码,但是如何使用它-我的意思是我要在iframe代码上输入源URL的位置才能使其运行?我完全不是Java语言的菜鸟,所以请多多包涵。例如,假设我要iframe source = https://google.com,应该放在哪里?
<script>
(function(d){
var iframe = d.body.appendChild(d.createElement('iframe')),
doc = iframe.contentWindow.document;
// style the iframe with some CSS
iframe.style.cssText = "position:absolute;width:200px;height:100px;left:0px;";
doc.open().write('<body onload="' +
'var d = document;d.getElementsByTagName(\'head\')[0].' +
'appendChild(d.createElement(\'script\')).src' +
'=\'\/path\/to\/file\'">');
doc.close(); //iframe onload event happens
})(document);
</script>
答案 0 :(得分:0)
如果您只想将另一个网站嵌入到您的网站中,则可以
<iframe src="https://google.com"></iframe>
没有任何JavaScript。
看看these docs以获得更多信息。