javascript兼容性问题

China☆狼群 提交于 2020-03-12 04:54:31

javascript常见的兼容问题整理:

1.滚动条:

document.documentElement.scrollTop  ||  document.body.scrollTop

 

2.获取样式兼容

function getStyle(dom,styleName){

return dorm.currentStyle?dom.currentStyle[styleName]

}

3.网页可视区域兼容

window.innerHeight || document.documentElement.clientHeight;

window.innerWidth || document.documentElement.clientWidth;

 

4.事件对象兼容

evt=evt||window.event;

5.阻止事件冒泡兼容

event.stopPropagation?event.stopPropagation():event.cancelBubble=true;

 

6.阻止默认行为兼容

evt.preventDefault?evt.preventDefault():evt.returnValue=false;

 

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!