<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<head><meta forua="true" http-equiv="Cache-Control" content="max-age=0" /></head>
<card title="js中动态生成iframe方法并兼容主流浏览器" id="card1">
<p> 游客</p><p>
标题:js中动态生成iframe方法并兼容主流浏览器<br/>
正文:<br/>
以下代码在IE8下运行通过，在IE9中出错：代码如下:<br/>document.createElement('&amp;lt;iframe id=&quot;yige-org-iframe&quot; src=&quot;yige.org.logo.gif&quot; style=&quot;position:absolute;top:0;left:0;width:1px;height:1px;visibility:hidden;&quot;&amp;gt;&amp;lt;/iframe&amp;gt;');<br/>错误提示：exception : SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5)思路分析：<br/>第一步：兼容IE9，firefox，Opera，Safari等浏览器；代码如下:var iframe = document.createElement(&quot;iframe&quot;);<br/>iframe.setAttribute(&quot;id&quot;, &quot;yui-history-iframe&quot;);<br/>iframe.setAttribute(&quot;src&quot;, &quot;../../images/defaults/transparent-pixel.gif&quot;);<br/>iframe.setAttribute(&quot;style&quot;,&quot;position:absolute;top:0;left:0;width:1px;height:1px;visibility:hidden;&quot;);<br/>第二步：兼容IE6-8：由于ie6-8 不能修改iframe的name属性代码如下:<br/>var oFrame = isIE ? document.createElement(&quot;&amp;lt;iframe name=/&quot;&quot; + this._FrameName + &quot;/&quot;&amp;gt;&quot;) : document.createElement(&quot;iframe&quot;);<br/>oFrame.name = &quot;iframName&quot;;综合解决办法:代码如下:<br/>var isIE = (document.all) ? true: false; //这里仅仅简单的对是否是IE进行判断，详细浏览器判断：请参考浏览器类型侦测<br/>var ua = navigator.userAgent.toLowerCase().match(/msie ([/d.] + ) <br/><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1072&amp;Page=1">[&lt;&lt;]</a><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1072&amp;Page=1">[[1]]</a><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1072&amp;Page=2">[2]</a><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1072&amp;Page=3">[3]</a><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1072&amp;Page=7">[&gt;&gt;]</a><br/>
<br/>
<a href="wap.asp?act=Com&amp;id=1072">查看评论(0)</a><br/>
<a href="wap.asp?act=AddCom&amp;inpId=1072">发表评论</a><br/><br/>

<br/>

<br/>
<a href="http://camnpr.com/wap.asp">首页</a>
</p>
</card>
</wml>