我有一个HTML字符串
<html>
<body>Hello world</body>
</html>
我想用JavaScript将其设置为iframe。我试图像这样设置HTML:
contentWindow.document.body.innerHTML
或
contentDocument.body.innerHTML
或
document.body.innerHTML
但IE给出“访问被拒绝”。或“对象不支持此属性或方法。”或“行动的最终元素无效。”错误。
这是我的完整代码:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery_1.7.0.min.js"/>
<script type="text/javascript">
$(document).ready(function(){
var htmlString = "<html><body>Hello world</body></html>";
var myIFrame = document.getElementById('iframe1');
// open needed line commentary
//myIFrame.contentWindow.document.body.innerHTML = htmlString;
//myIFrame.contentDocument.body.innerHTML = htmlString;
//myIFrame.document.body.innerHTML = htmlString;
//myIFrame.contentWindow.document.documentElement.innerHTML = htmlString;
});
</script>
</head>
<body>
<p>This is iframe:
<br>
<iframe id="iframe1">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
答案 0 :(得分:49)
您可以使用:
document.getElementById('iframe1').contentWindow.document.write("<html><body>Hello world</body></html>");
这是一个jsFiddle,适用于所有主流浏览器。
请注意,您应该使用contentDocument.write
代替contentWindow.document.write
:这也可以在IE7中使用。
答案 1 :(得分:18)
var htmlString="<body>Hello world</body>";
var myIFrame = document.getElementById('iframe1');
myIFrame.src="javascript:'"+htmlString+"'";
使用html5,您将能够使用srcdoc attribute。
答案 2 :(得分:6)
innerHTML
有点棘手,特别是在IE中,像thead
这样的元素是只读的,会造成很多麻烦。
根据msdn上的文档,您可以尝试documentMode
提供innerHTML
属性。
myIFrame = myIFrame.contentWindow ||
myIFrame.contentDocument.document ||
myIFrame.contentDocument;
myIFrame.document.open();
myIFrame.document.write('Your HTML Code');
myIFrame.document.close();
这可能仅适用于IE。
答案 3 :(得分:0)
document.documentElement.innerHTML
怎么样?但要知道页面中的所有内容都会被替换,即使是那样做的脚本。
对于iframe,它就像这个myIFrame.contentWindow.document.documentElement.innerHTML
答案 4 :(得分:0)
我对这里的答案的“来源”有疑问。这就是我的工作方式:
const frame1 = document.createElement('iframe');
frame1.name = 'frame1';
//not have to set this style,just for demo
frame1.style.position = 'absolute';
frame1.style.height = '800px';
frame1.style.top = '100px';
frame1.style.left = '100px';
frame1.style.background = 'white';
document.body.appendChild(frame1);
const frameDoc =
frame1.contentWindow || frame1.contentDocument.document ||
frame1.contentDocument;
frameDoc.document.write('<html><head><title></title><body>Hello world</body></html>');
frameDoc.document.close();
答案 5 :(得分:-2)
试一试:
$('iframe').load(function() {
$(this).contents().find('body').append("Hello world");
});
更新
$(function(){
$('iframe').load(function() {
$(this).contents().find('body').append("Hello world");
});
})