我有以下结构。
<div>
<p>Hello World !!</p>
</div>
<iframe id="myiframe" src='myiframeContent.html'></iframe>
我有content
的以下JavaScript变量:
var s ="<html><head></head><body><div>Test_Div</div></body></html>";
如何使用变量myiframe
更改ID为s
的iframe内容?
我试过了:
$("#myiframe").html(s);
这给了我非常不寻常的回报,它将当前页面的所有内容更改为VAR S
例如:风格,背景等。
如何使用包含HTML
?
更新#1
:变量s
的内容如下 - &gt;
<html>
<head>
<title>{page_name}</title>
<meta name="keywords" content="{page_meta_tags}" />
<script src="/1.js"></script>
<script src="/2.js"></script>
<style>
h2{
color:red;}
h1{
color:red;}
body{
background-color:#f0eded;
color:74f503;
font-family:Verdana, Geneva, sans-serif;
background:url({getUrl});}
</style>
</head>
<body>
yahoo
<div style="float:right">{pagecomment}</div>
<div id="blogstart" style="">
<h1>My Blog</h1>
{nextPrevPagination}
{blog}
{nextPrevPagination}
</div>
<p>My Page Name : {page_name}</p><br/>
<p>Name of this template</p><br/>
<p>Date started this page : {page_date}</p><br/>
<label>Address</label>
<textarea>{page_address}</textarea>
<span>Country : {page_country} State :{page_state}</span>
<p>page City : {page_city} Page Pincode {page_pincode}</p>
<a href="mailto:{page_email}">Email me</a>
{page_bio_title} and {page_bio_desc}
<img src="{page_profile}" />
{page_avatar}
<p>Contact me : {page_mobile} , {page_landline} </p>
<a href="http://www.facebook.com/{page_facebook_user}">I am on Facebook</a>
<a href="http://www.twitter.com/{page_twitter_user}"></a>
</body>
</html>
将此变量应用于iframe后我得到了这样的[通过萤火虫检查]
请注意,它没有BODY
,Head
标记,但上面的[var s]标记为BODY
。
<html>
<title>{page_name}</title>
<meta content="{page_meta_tags}" name="keywords">
<style>
h2{
color:red;}
h1{
color:red;}
body{
background-color:#f0eded;
color:74f503;
font-family:Verdana, Geneva, sans-serif;
background:url({url});}
</style>
yahoo
<div style="float: right;">{pagecomment}</div>
<div style="" id="blogstart">
<h1>My Blog</h1>
{nextPrevPagination}
{blog}
{nextPrevPagination}
</div>
<p>My Page Name : {page_name}</p><br>
<p>Name of this template</p><br>
<p>Date started this page : {page_date}</p><br>
<label>Address</label>
<textarea>{page_address}</textarea>
<span>Country : {page_country} State :{page_state}</span>
<p>page City : {page_city} Page Pincode {page_pincode}</p>
<a href="mailto:{page_email}">Email me</a>
{page_bio_title} and {page_bio_desc}
<img src="{page_profile}">
{page_avatar}
<p>Contact me : {page_mobile} , {page_landline} </p>
<a href="http://www.facebook.com/{page_facebook_user}">I am on Facebook</a>
<a href="http://www.twitter.com/{page_twitter_user}"></a>
</html>
答案 0 :(得分:88)
我设法用
做到了var html_string= "content";
document.getElementById('output_iframe1').src = "data:text/html;charset=utf-8," + escape(html_string);
答案 1 :(得分:27)
使用&#34;内容&#34;功能:
$('#some-id').contents().find('html').html("some-html")
答案 2 :(得分:9)
要在所有现代浏览器上运行,您需要两个步骤:
答案 3 :(得分:7)
$('#myiframe').contents().find('html').html(s);
您可以在这里查看http://jsfiddle.net/Y9beh/
答案 4 :(得分:4)
为什么不使用
$iframe.load(function () {
var $body = $('body', $iframe.get(0).contentWindow.document);
$body.html(contentDiv);
});
而不是计时器?
答案 5 :(得分:4)
您要为此使用iframe的srcdoc
属性(MDN documentation)。
var html_string = "<html><body><h1>My epic iframe</p></body></html>";
document.querySelector('iframe').srcdoc = html_string;
与使用此方法(例如本页上列出的Red方法)相比,使用此方法的好处在于,将与srcdoc
添加的iframe内容视为同源。如果需要,可以继续使用JavaScript来操纵和访问iframe。
答案 6 :(得分:3)
我需要重复使用相同的iframe并每次替换内容。我尝试了几种方法,这对我有用:
// clear content
element.src = "about:blank";
// write new content
element.contentWindow.document.open();
element.contentWindow.document.write(newHtml);
element.contentWindow.document.close();
答案 7 :(得分:1)
你需要 -
var $frame = $('myiframe');
setTimeout( function() {
var doc = $frame[0].contentWindow.document;
var $body = $('body',doc);
$body.html('<div>Test_Div</div>');
}, 1 );
答案 8 :(得分:1)
使用 Blob:
var s ="<html><head></head><body><div>Test_Div</div></body></html>";
var iframe = document.getElementById("myiframe");
var blob = new Blob([s], {type: "text/html; charset=utf-8"});
iframe.src = URL.createObjectURL(blob);
答案 9 :(得分:0)
如果您要将html内容包含脚本标签设置为iframe,则可以访问使用以下方法创建的iframe:
$(iframeElement).contentWindow.document
因此您可以在其中设置任何元素的innerHTML。
但是,对于脚本标签,您应该创建并附加一个脚本标签,如下所示:
答案 10 :(得分:-4)
尝试创建一个DOM对象:
var s = $('<html><head></head><body><div>Test_Div</div></body></html>');