关于不同浏览器对JS的支持与区别.docx

上传人:b****5 文档编号:5668992 上传时间:2022-12-31 格式:DOCX 页数:14 大小:22.02KB
下载 相关 举报
关于不同浏览器对JS的支持与区别.docx_第1页
第1页 / 共14页
关于不同浏览器对JS的支持与区别.docx_第2页
第2页 / 共14页
关于不同浏览器对JS的支持与区别.docx_第3页
第3页 / 共14页
关于不同浏览器对JS的支持与区别.docx_第4页
第4页 / 共14页
关于不同浏览器对JS的支持与区别.docx_第5页
第5页 / 共14页
点击查看更多>>
下载资源
资源描述

关于不同浏览器对JS的支持与区别.docx

《关于不同浏览器对JS的支持与区别.docx》由会员分享,可在线阅读,更多相关《关于不同浏览器对JS的支持与区别.docx(14页珍藏版)》请在冰豆网上搜索。

关于不同浏览器对JS的支持与区别.docx

关于不同浏览器对JS的支持与区别

首先,要用JS区别不同的浏览器。

至于浏览器的支持效果,只能由经验与资料去判断了,并无一定标准。

而且同一浏览器不同版本也会有所区别。

/***

DreamCore-JsLib/Agent

Date:

Dec09,2006

Copyright:

DreamSoftCo.,Ltd.

Mail:

Dream@Dreamsoft.Ca

Author:

Egmax

Browser:

IE5.0+,Firefox1.5+,Netscape6.0+,Opera5.0+

Update:

***/

var__Agt=navigator.userAgent.toLowerCase();

var__If=/(firefox|netscape|opera).?

[\/|](.)\.([^;\)]+|[^\)]+\))$/.exec(__Agt);

if(!

__If)__If=/(msie)(.)\.[^;]+;/.exec(__Agt);

var_Br=__If[1],_Ver=__If[2];

alert(_Br+_Ver);

很COOL的代码,测试过可以区分MSIE6与火狐

接下来是它们对JS的常见区别:

1.document.formName.item("itemName")的问题 

说明:

 

   ie下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"]; 

firefox下,只能使用document.formName.elements["elementName"]。

 

解决方法:

统一使用

Js代码

1.document.formName.elements[ "elementName" ]  

Js代码 

1.document.formName.elements["elementName"]  

2.集合类对象问题 

说明:

 

   IE下,可以使用()或[]获取集合类对象;Firefox下,只能使用[]获取集合类对象. 

解决方法:

统一使用[]获取集合类对象。

 

3.自定义属性问题 

说明:

 

   IE下,可以使用获取常规属性的方法来获取自定义属性,也可以使用getAttribute()获取自定义属性;Firefox下,只能使用getAttribute()获取自定义属性。

 

解决方法:

 

   统一通过getAttribute()获取自定义属性。

 

4.eval("idName")问题 

说明:

 

   IE下,可以使用eval("idName")或getElementById("idName")来取得id为idName的HTML对象;Firefox下只能使用getElementById("idName")来取得id为idName的HTML对象。

 

解决方法:

 

   统一用getElementById("idName")来取得id为idName的HTML对象。

 

5.变量名与某HTML对象ID相同的问题 

说明:

 

   IE下,HTML对象的ID可以作为document的下属对象变量名直接使用;Firefox下则不能.Firefox下,可以使用与HTML对象ID相同的变量名;IE下则不能。

 

解决方法:

 

   使用document.getElementById("idName")代替document.idName。

最好不要取HTML对象ID相同的变量名,以减少错误;在声明变量时,一律加上var,以避免歧义。

 

6.const问题 

说明:

 

   Firefox下,可以使用const关键字或var关键字来定义常量;IE下,只能使用var关键字来定义常量. 

解决方法:

统一使用var关键字来定义常量。

 

7.input.type属性问题 

说明:

 

   IE下input.type属性为只读;但是Firefox下input.type属性为读写。

 

8.window.event问题 

说明:

 

   window.event只能在IE下运行,而不能在Firefox下运行,这是因为Firefox的event只能在事件发生的现场使用。

Firefox必须从源处加入event作参数传递。

ie忽略该参数,用window.event来读取该event。

 

解决方法:

 

IE&Firefox:

 

Submitted(event)"/>…

Js代码

1.   

2.function  Submitted(evt) {   

3.evt=evt?

evt:

(window.event?

window.event:

null );   

4.}   

Js代码 

1.   

2.function Submitted(evt) {   

3.evt=evt?

evt:

(window.event?

window.event:

null);   

4.}   

9.event.x与event.y问题 

说明:

 

    IE下,even对象有x,y属性,但是没有pageX,pageY属性;Firefox下,even对象有pageX,pageY属性,但是没有x,y属性。

 

解决方法:

 

    使用mX(mX=event.x?

event.x:

event.pageX;)来代替IE下的event.x或者Firefox下的event.pageX。

 

10.event.srcElement问题 

说明:

 

    IE下,event对象有srcElement属性,但是没有target属性;Firefox下,even对象有target属性,但是没有srcElement属性。

 

解决方法:

 

    使用obj(obj=event.srcElement?

event.srcElement:

event.target;)来代替IE下的event.srcElement或者Firefox下的event.target。

请同时注意event的兼容性问题。

 

11.window.location.href问题 

说明:

 

    IE或者Firefox2.0.x下,可以使用window.location或window.location.href;Firefox1.5.x下,只能使用window.location。

 

解决方法:

 

    使用window.location来代替window.location.href。

 

12.模态和非模态窗口问题 

说明:

 

    IE下,可以通过showModalDialog和showModelessDialog打开模态和非模态窗口;Firefox下则不能。

 

解决方法:

 

    直接使用window.open(pageURL,name,parameters)方式打开新窗口。

 

如果需要将子窗口中的参数传递回父窗口,可以在子窗口中使用window.opener来访问父窗口.例如:

Js代码

1.var  parWin = window.opener;  

2.parWin.document.getElementById("C_Name" ).value =  "john" ;  

Js代码 

1.var parWin = window.opener;  

2.parWin.document.getElementById("C_Name").value = "john";  

13.frame问题 

以下面的frame为例:

 

 

(1)访问frame对象:

 

IE:

使用window.frameId或者window.frameName来访问这个frame对象。

frameId和frameName可以同名。

 

Firefox:

只能使用window.frameName来访问这个frame对象。

 

另外,在IE和Firefox中都可以使用window.document.getElementById("frameId")来访问这个frame对象。

 

(2)切换frame内容:

 

在IE和Firefox中都可以使用window.document.getElementById("testFrame").src="xxx.html"或window.frameName.location="xxx.html"来切换frame的内容。

 

如果需要将frame中的参数传回父窗口(注意不是opener,而是parentframe),可以在frame中使用parent来访问父窗口。

例如:

Js代码

1.parent.document.form1.filename.value= "jquery" ;  

Js代码 

1.parent.document.form1.filename.value="jquery";  

14.body问题 

Firefox的body在body标签没有被浏览器完全读入之前就存在;而IE的body则必须在body标签被浏览器完全读入之后才存在。

 

15.事件委托方法 

IE:

document.body.onload=inject;//Functioninject()在这之前已被实现 

Firefox:

document.body.onload=inject(); 

16.firefox与IE的父元素(parentElement)的区别 

IE:

obj.parentElement 

firefox:

obj.parentNode 

解决方法:

 

    因为firefox与IE都支持DOM,因此使用obj.parentNode是不错选择。

 

17.cursor:

handVScursor:

pointer 

firefox不支持hand,但ie支持pointer。

 

解决方法:

统一使用pointer。

 

18.innerText问题 

    在IE中能正常工作,但是innerText在firefox中却不行.需用textContent。

 

解决方法:

Js代码

1.if (navigator.appName.indexOf( "Explorer" ) > -1){   

2.    document.getElementById('element' ).innerText =  "my text" ;   

3.} else {   

4.    document.getElementById('element' ).textContent =  "my text" ;   

5.}  

Js代码 

1.if(navigator.appName.indexOf("Explorer") > -1){   

2.    document.getElementById('element').innerText = "my text";   

3.} else{   

4.    document.getElementById('element').textContent = "my text";   

5.}  

19.设置HTML标签的style 

    FireFox中设置HTML标签的style时,所有位置性和字体尺寸的值必须后跟px。

这个ie也是支持的。

 

20.table操作 

    ie,firefox以及其它浏览器对于table标签的操作都各不相同,在ie中不允许对table和tr的innerHTML赋值,使用js增加一个tr时,使用appendChild方法也不管用。

 

解决方法:

 

//向table追加一个空行:

Js代码

1.var  row = otable.insertRow(-1);   

2.var  cell = document.createElement( "td" );   

3.cell.innerHTML = " " ;   

4.cell.className = "XXXX" ;   

5.row.appendChild(cell);   

Js代码 

1.var row = otable.insertRow(-1);   

2.var cell = document.createElement("td");   

3.cell.innerHTML = " ";   

4.cell.className = "XXXX";   

5.row.appendChild(cell);   

21.padding问题 

     padding5px4px3px1px;FireFox无法解释简写,必须改成padding-top:

5px;padding-right:

4px;padding-bottom:

3px;padding-left:

1px; 

22.消除ul、ol等列表的缩进时 

     样式应写成:

list-style:

none;margin:

0px;padding:

0px;其中margin属性对IE有效,padding属性对FireFox有效。

 

23.css透明 

IE:

filter:

progid:

DXImageTransform.Microsoft.Alpha(style=0,opacity=60)。

 

FF:

opacity:

0.6。

 

IE:

filter:

alpha(opacity=10); 

firefox:

-moz-opacity:

.10; 

24.CSS圆角 

IE:

不支持圆角。

 

FF:

-moz-border-radius:

4px,或者-moz-border-radius-topleft:

4px;-moz-border-radius-topright:

4px;-moz-border-radius-bottomleft:

4px;-moz-border-radius-bottomright:

4px;。

 

25.CSS双线凹凸边框 

IE:

border:

2pxoutset;。

 

FF:

-moz-border-top-colors:

#d4d0c8white;-moz-border-left-colors:

#d4d0c8white;-moz-border-right-colors:

#404040#808080;-moz-border-bottom-colors:

#404040#808080; 

26.对select的options集合操作 

     枚举元素除了[]外,SelectName.options.item()也是可以的,另外SelectName.options.length,SelectName.options.add/remove都可以在两种浏览器上使用。

 

27.XMLHTTP的区别

Js代码

1.//mf    

2.if  (window.XMLHttpRequest)  //mf    

3.{   

4.xmlhttp=new  XMLHttpRequest()   

5.xmlhttp.   

6.xmlhttp.open("GET" ,url, true )   

7.xmlhttp.send(null )   

8.}   

9.//ie    

10.else   if  (window.ActiveXObject)  // code for IE    

11.{   

12.xmlhttp=new  ActiveXObject( "Microsoft.XMLHTTP" )   

13.    if  (xmlhttp)   

14.    {   

15.    xmlhttp.   

16.    xmlhttp.open("GET" ,url, true )   

17.    xmlhttp.send()   

18.    }   

19.}   

20.}   

Js代码 

1.//mf   

2.if (window.XMLHttpRequest) //mf   

3.{   

4.xmlhttp=new XMLHttpRequest()   

5.xmlhttp.   

6.xmlhttp.open("GET",url,true)   

7.xmlhttp.send(null)   

8.}   

9.//ie   

10.else if (window.ActiveXObject) // code for IE   

11.{   

12.xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")   

13.    if (xmlhttp)   

14.    {   

15.    xmlhttp.   

16.    xmlhttp.open("GET",url,true)   

17.    xmlhttp.send()   

18.    }   

19.}   

20.}   

28.innerHTML的区别 

Firefox不支持innerHTML,解决办法可以如下

Js代码

1.rng = document.createRange();   

2.el = document.getElementById(elementid);   

3.rng.setStartBefore(el);   

4.htmlFrag = rng.createContextualFragment(content);   

5.while  (el.hasChildNodes())  //清除原有内容,加入新内容    

6.       el.removeChild(el.lastChild);   

7.el.appendChild(htmlFrag);   

Js代码 

1.rng = document.createRange();   

2.el = document.getElementById(elementid);   

3.rng.setStartBefore(el);   

4.htmlFrag = rng.createContextualFragment(content);   

5.while (el.hasChildNodes()) //清除原有内容,加入新内容   

6.       el.removeChild(el.lastChild);   

7.el.appendChild(htmlFrag);   

29.img的src刷新问题 

在IE下可以用

pointer"/>可以刷新图片,但在FireFox下不行。

主要是缓存问题,在地址后面加个随机数就解决了。

编辑onclick事件代码如下:

"this.src=this.src+'?

'+Math.random()"。

 

30.!

important 

   FF对于"!

important"会自动优先解析,IE7已支持,然而IE6则会忽略。

Html代码

1..tabd{  

2.background:

url(/res/images/up/tab1.gif) no-repeat 0px 0px !

important; /*Style for FF and IE7*/  

3.background:

url(/res/images/up/tab1.gif) no-repeat 1px 0px; /* Style for IE6 */  

4.}  

Html代码 

1..tabd{  

2.background:

url(/res/images/up/tab1.gif) no-repeat 0px 0px !

important; /*Style for FF and IE7*/  

3.background:

url(/res/images/up/tab1.gif) no-repeat 1px 0px; /* Style for IE6 */  

4.}  

31.针对firefoxie6ie7的css样式 

    *+html与*html是IE特有的标签,firefox暂不支持.而*+html又为IE7特有标签。

Html代码

1.#color1 { color:

 #333; } /* FireFox */   

2.* html #color1 { color:

 #666; } /* IE6 */   

3.*+html #color1 { color:

 #999; } /* IE7 */   

Html代码 

1.#color1 { color:

 #333; } /* FireFox */   

2.* html #color1 { color:

 #666; } /* IE6 */   

3.*+html #color1 { color:

 #999; } /* IE7 */   

   那么在firefox下字体颜色显示为#333,IE6下字体颜色显示为#666,IE7下字体颜色显示为#999。

注意它们的书写顺序。

 

   *+html对IE7的HACK必须保证HTML顶部有如下声明:

 

DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN" "http:

//www.w3.org/TR/html4/loose.dtd"> 

32.margin加倍的问题 

   设置为float的div在ie下设置的margin会加倍。

这是一个ie6都存在的bug。

 

    解决方案是在这个div里面加上display:

inline;

Html代码

1.< style   type = "text/css" >   

2.#IamFloat{  

3.  float:

left;  

4.  margin:

5px;/*IE下理解为10px*/  

5.  display:

inline;/*IE下再理解为5px*/  

6.}  

7.   

8.< div   id = "imfloat" >    

Html代码 

1.  

2.#IamFloat{  

3.  float:

left;  

4.  margin:

5px;/*IE下理解为10px*/  

5.  display:

inline;/*IE下再理解为5px*/  

6.}  

7.  

8.

  

33.在mozill

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > PPT模板 > 图表模板

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1