Adding Dynamic Contents to IFrames

http://thomas.bindzus.me/2007/12/24/adding-dynamic-contents-to-iframes/



I found myself in a situation this weekend where I needed to add some contents to an iframe dynamically, and naive as I were, I kind of assumed it was straight forward to do it using the DOM.

To try it out I created a simple HTML page adding a div element and a function onPageLoad which would be called when the page was loaded and here I would place my code to dynamically add some contents to the iframe which I also decided to create dynamically just for the sport of it.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
    <head>
       <title>Adding Dynamic Contents to IFrames</title>
 
       <script type= "text/javascript" >
          function onPageLoad()
          {
             var iframe = document.createElement( "iframe" );
             var canvas = document.getElementById( "canvas" );
             canvas.appendChild(iframe);
 
             var div = iframe.document.createElement( "div" );
             div.style.width = "50px" ; div.style.height = "50px" ;
             div.style.border = "solid 1px #000000" ;
             div.innerHTML = "Hello IFrame!" ;
             iframe.document.body.appendChild(div);
          }
       </script>
    </head>
 
    <body onload= "onPageLoad();" >
       <div id= "canvas" style= "border: solid 1px #000000; height: 500px; width: 500px;" ></div>
    </body>
</html>

My first attempt failed both in Internet Explorer and Firefox, worst in Firefox which announced that iframe.document didn’t have any properties, and in Internet Explorer the div element was placed after the iframe element not inside intended.I did some research using Google in an attempt to get some qualified help and I learned that there are just as many ways to get the iframe’s document as there are browser platforms, almost. But happy to have found myself in some kind of progress I updated my code for the onPageLoad function.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
function onPageLoad()
{
    var iframe = document.createElement( "iframe" );
    var canvas = document.getElementById( "canvas" );
    canvas.appendChild(iframe);
 
    var doc = null ;
    if (iframe.contentDocument)
       // Firefox, Opera
       doc = iframe.contentDocument;
    else if (iframe.contentWindow)
       // Internet Explorer
       doc = iframe.contentWindow.document;
    else if (iframe.document)
       // Others?
       doc = iframe.document;
 
    if (doc == null )
       throw "Document not initialized" ;
 
    var div = doc.createElement( "div" );
    div.style.width = "50px" ; div.style.height = "50px" ;
    div.style.border = "solid 1px #000000" ;
    div.innerHTML = "Hello IFrame!" ;
    doc.body.appendChild(div);
}

My progress was limited, I succeeded in eliminating the error when viewing the page with Firefox, but now it no longer worked in Internet Explorer which announced that doc.body was null.You might wonder why I choose to append the iframe to an element which already exists in the DOM before appending anything to the iframe’s document, that is because I found out that as long as the iframe is not appended to the DOM the document property will not be initialized, this happened both for Internet Explorer and Firefox.Reading the post, I had found, a little more thoroughly I found out that there was a way to write to the iframe’s document using the document.write method. Trying it out I changed my onPageLoad function to write a small text.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function onPageLoad()
{
    var iframe = document.createElement( "iframe" );
    var canvas = document.getElementById( "canvas" );
    canvas.appendChild(iframe);
 
    var doc = null ;
    if (iframe.contentDocument)
       // Firefox, Opera
       doc = iframe.contentDocument;
    else if (iframe.contentWindow)
       // Internet Explorer
       doc = iframe.contentWindow.document;
    else if (iframe.document)
       // Others?
       doc = iframe.document;
 
    if (doc == null )
       throw "Document not initialized" ;
 
    doc.open();
    doc.write( "Hello IFrame!" );
    doc.close();
}

Finally I was able to render the page both in Internet Explorer and Firefox with the same result, I was doing some real progress. Now I could of course create all of my contents in the iframe this way, as the post I found using Google suggested, but it wouldn’t be that dynamic plus I would have to do a lot of string manipulation in order to add event handlers and so on.

My biggest problem being that I only had access to an amputated version of the document element in the iframe I started thinking about ways in which I could make a callback function from the iframe sending the document element to the parent. But in the end the solution was extremely simple and perhaps some of you who read this whill think that it is obvious.

The real trick for making this work only occurred to me while writing this, I tried to add my div element to the iframe’s document element right after the part where I write “Hello IFrame!” as shown above, this gave me the following changed onPageLoad function.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function onPageLoad()
{
    var iframe = document.createElement( "iframe" );
    var canvas = document.getElementById( "canvas" );
    canvas.appendChild(iframe);
 
    var doc = null ;
    if (iframe.contentDocument)
       // Firefox, Opera
       doc = iframe.contentDocument;
    else if (iframe.contentWindow)
       // Internet Explorer
       doc = iframe.contentWindow.document;
    else if (iframe.document)
       // Others?
       doc = iframe.document;
 
    if (doc == null )
       throw "Document not initialized" ;
 
    doc.open();
    doc.write( "Hello IFrame!" );
    doc.close();
 
    var div = doc.createElement( "div" );
    div.style.width = "50px" ; div.style.height = "50px" ;
    div.style.border = "solid 1px #000000" ;
    div.innerHTML = "Hello IFrame!" ;
    doc.body.appendChild(div);
}

The magic appeared, now I got my div element added to the iframe’s document element right after the text I wrote using the write method. The next natural step was to leave out the call to the write method. Calling the open method following by the close method will put the iframe’s document in such a state that you will be able to use the appendChild method.

The only thing left to do after this was to wrap it all up nicely in a class, below is a simplified version of what an IFrame class might look like. Notice that the parent element must be added to the DOM already, but in most cases that shouldn’t cause any problems.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
function IFrame(parentElement)
{
    // Create the iframe which will be returned
    var iframe = document.createElement( "iframe" );
 
    // If no parent element is specified then use body as the parent element
    if (parentElement == null )
       parentElement = document.body;
 
    // This is necessary in order to initialize the document inside the iframe
    parentElement.appendChild(iframe);
 
    // Initiate the iframe's document to null
    iframe.doc = null ;
 
    // Depending on browser platform get the iframe's document, this is only
    // available if the iframe has already been appended to an element which
    // has been added to the document
    if (iframe.contentDocument)
       // Firefox, Opera
       iframe.doc = iframe.contentDocument;
    else if (iframe.contentWindow)
       // Internet Explorer
       iframe.doc = iframe.contentWindow.document;
    else if (iframe.document)
       // Others?
       iframe.doc = iframe.document;
 
    // If we did not succeed in finding the document then throw an exception
    if (iframe.doc == null )
       throw "Document not found, append the parent element to the DOM before creating the IFrame" ;
 
    // Create the script inside the iframe's document which will call the
    iframe.doc.open();
    iframe.doc.close();
 
    // Return the iframe, now with an extra property iframe.doc containing the
    // iframe's document
    return iframe;
}

I saved the class in a file called IFrame.js, and using this class simplified my test page to the following.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
    <head>
       <title>Adding Dynamic Contents to IFrames</title>
 
       <script type= "text/javascript" src= "IFrame.js" ></script>
       <script type= "text/javascript" >
          function onPageLoad()
          {
             var canvas = document.getElementById( "canvas" );
             var iframe = new IFrame(canvas);
 
             var div = iframe.doc.createElement( "div" );
             div.style.width = "50px" ; div.style.height = "50px" ;
             div.style.border = "solid 1px #000000" ;
             div.innerHTML = "Hello IFrame!" ;
             iframe.doc.body.appendChild(div);
          }
       </script>
    </head>
 
    <body onload= "onPageLoad();" >
       <div id= "canvas" style= "border: solid 1px #000000; height: 500px; width: 500px;" ></div>
    </body>
</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值