您的位置:首页 > Web前端 > JavaScript

分针网—IT教育: Javascript不同浏览器差异及兼容方法

2017-05-03 10:06 281 查看
javascript的各种兼容就是为了解决不同浏览器的差异性,了解其中的差异能够帮助你更快的解决问题,提高代码的使用质量,编写更优秀的javascript代码。

1.window.event表示当前的时间对象,IE有这个对象,FF没有,FF通过给事件处理函数传递事件对象2.获取事件源IE用srcElement获取事件源,而FF用target获取事件源以上两个兼容通常会这么写:

 var evt = e||event;  var el = evt.srcTarget || evt.srcElement;

3.添加、去除事件

4.获取标签的自定义属性

IE:div1.value或div1['value']

FF:可用div1.getAttribute("value")

5.document.getElemntByName()和document.all[name]

IE不可以,

FF可以

6.input.type的属性

7.IE支持innerText、outerHTML

FF:支持textContent

8.窗口的位置IE、chrome、safari:支持使用window.screenLeft和window.screenTop

IE8以上、chrome、safari、firefox:支持使用window.screenX和window.screenY兼容代码可以使用下面这段代码:

 var leftX = typeof window.screenLeft == 'number' ? window.screenLeft : window.screenX;  ver topY = typeof window.screenTop == 'number' ? window.screenTop : window.screenY;

9.窗口的大小

firefox、chrome、IE9和safari:window.innerWidth和window.innerHeight

IE系列:document.body.clientWidth和document.body.clientHeight

不是IE6:document.documentElement.clientWidth和document.documentElement.clientHeight

兼容代码可以这样子写

var width = window.innerWidth; var height = window.innerHeight;  if(typeof width != 'number'){ if(document.compatMode == 'CSS1Compat'){  width = document.documentElement.clientWidth; height = document.docuementElement.clientHeight;  }else{  width = document.body.clientWidth;  height = document.body.clientHeight;  }
                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息