首頁  >  文章  >  web前端  >  javascript中相容主流瀏覽器的動態生成iframe方法_javascript技巧

javascript中相容主流瀏覽器的動態生成iframe方法_javascript技巧

WBOY
WBOY原創
2016-05-16 16:49:571354瀏覽

以下程式碼在IE8下運行通過,在IE9中出錯:

複製程式碼 程式碼如下:

程式碼如下:
document.createElement('');

錯誤提示:exception : SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5)

思路分析:

第一步:相容於IE9,firefox,Opera,Safari等瀏覽器;

複製程式碼
程式碼如下:

var iframe = document.createElement("iframe"); iframe.setAttribute("id", "yui-history-iframe");
iframe.setAttribute("src", "../../images/defaults/transparent-pixel.gif");
iframe.setAttribute("style","position:absolute;top:0;left:0;width:1px;height:1px;visibility:hidden;");



第二步:兼容IE6-8:由於ie6-8 不能修改iframe的name屬性

程式碼如下:


var oFrame = isIE ? document.createElement("
oFrame.name = "iframName";


綜合解決方法:

程式碼如下:

var isIE = (document.all) ? true: false; //这里仅仅简单的对是否是IE进行判断,详细浏览器判断:请参考浏览器类型侦测
var ua = navigator.userAgent.toLowerCase().match(/msie ([/d.] + ) / )[1];
if (ua == "9.0") {
    isIE = false;
}
var oFrame = isIE ? document.createElement("