web-dev-qa-db-ja.com

iframe内にhtmlを配置する(javascriptを使用)

後でhtmlを挿入するプレースホルダーとして空のiframeを作成できますか?

つまり、idの空のiframeがあるとします。

Htmlを挿入するにはどうすればよいですか?

Jqueryを使用していますが、それにより簡単になります。

32
hasen

JQueryなしでも実行できます。

var iframe = document.getElementById('iframeID');
iframe = iframe.contentWindow || ( iframe.contentDocument.document || iframe.contentDocument);

iframe.document.open();
iframe.document.write('Hello World!');
iframe.document.close();

jQueryのhtmlは、挿入されたHTMLからbody、html、headタグを取り除きます。

37
Blacksonic

このページのソースを見る: http://mg.to/test/dynaframe.html まさにあなたがやりたいことをするように見えます。

$(function() {
    var $frame = $('<iframe style="width:200px; height:100px;">');
    $('body').html( $frame );
    setTimeout( function() {
        var doc = $frame[0].contentWindow.document;
        var $body = $('body',doc);
        $body.html('<h1>Test</h1>');
    }, 1 );
});
36
Tyson

いいえ、ちがいます。次のようにスクリプトを変更します。

$(function() {
    var $frame = $('iframe');
    setTimeout( function() {
            var doc = $frame[0].contentWindow.document;
            var $body = $('body',doc);
            $body.html('<h1>Test</h1>');
    }, 1 );
});
8
hotmeteor
iframeElementContainer =   document.getElementById('BOX_IFRAME').contentDocument;
iframeElementContainer.open();
iframeElementContainer.writeln("<html><body>hello</body></html>");
iframeElementContainer.close();

はい、私はそれが可能であることを知っていますが、主な問題は、外部からフレームを処理できないことです。すでに他のものをロードしています。

$(function() {
        var $frame = $('<iframe style="width:200px; height:100px;">');
        $('body').html( $frame );
        setTimeout( function() {
                var doc = $frame[0].contentWindow.document;
                var $body = $('body',doc);
                $body.html('<h1>Test</h1>');
        }, 1 );
});

ただし、

<iframe src="http:/www.hamrobrt.com">
<---Your Script to put as you like--->

その後、それを打つことは不可能です。

1
Abhilash

私は同じ問題を抱えていますが、iframeのSRC属性なしでデータベースからiframeに動的にhtmlコードスニペットを表示する必要があり、次のコードで同じ問題を修正しました

これが私が持っていたのと同じ要件を持っている人を助けることを願っています。

jsfiddleの例はこちら

HTML

<iframe src="" frameborder="0" class="iframe"></iframe>
<iframe src="" frameborder="0" class="iframe"></iframe>
<iframe src="" frameborder="0" class="iframe"></iframe>
<iframe src="" frameborder="0" class="iframe"></iframe>

JS

<script>
var doc,$body;
var txt = Array(
            '<style>body{background-color:grey} h1{background-color:red;font-weight:900}</style><h1>Cool!!! this is text for</h1><p>First Iframe</p>',
            '<style>body{background-color:pink}h1{background-color:green;font-weight:200}</style><h1>Cool This is Text for</h1><p> second Iframe',
            '<style>body{background-color:yellow}h1{font-weight:400}</style><h1>Cool..... This is text FOR : </h1> <div>3rd Iframe</div>',
            '<style>body{background-color:blue} h1{font-weight:400}</style><h1>Cool This is text for Fourth iframe</h1>'
            );
$('.iframe').each(function(index,value){
    doc = $('iframe')[index].contentWindow.document;
        $body = $('body',doc);
        $body.html(txt[index]);
});
</script>
0
Sunny S.M