码迷,mamicode.com
首页 > 其他好文 > 详细

页面插入iframe嵌套

时间:2017-12-21 17:18:17      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:style   fun   span   document   child   post   attr   play   append   

function loadURL(url)
            {
                var iFrame;
                iFrame = document.createElement("iframe");
                iFrame.setAttribute("src", url);
                iFrame.setAttribute("style", "display:block;");
                iFrame.setAttribute("height", "100px");
                iFrame.setAttribute("width", "300px");
                iFrame.setAttribute("frameborder", "0");
                document.body.appendChild(iFrame);
            }
            loadURL("http://www.baidu.com")

 

页面插入iframe嵌套

标签:style   fun   span   document   child   post   attr   play   append   

原文地址:http://www.cnblogs.com/chaser-li/p/8080967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!