码迷,mamicode.com
首页 > Web开发 > 详细

JS少数兼容

时间:2018-05-30 17:32:30      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:prevent   com   样式   def   keycode   var   attr   style   scroll   

1、获取滚动条滚动的距离
 
document.documentElement.scrollTop || document.body.scrollTop
 
2、获取非行间样式
 
function getStyle(obj,attr){
    if(obj.currentStyle){
        return obj.currentStyle[attr]
    }else{
        return getComputedStyle(obj,false)[attr]
    }
 
}
 
3、事件对象 
 
var e = e||event;
 
4、事件对象中的code值
 
var code = e.keyCode || e.which
 
5、阻止浏览器的默认行为
 
e.preventDefault?e.preventDefault():e.returnValue = false
 
6、阻止事件冒泡
 
e.stopPropagation?e.stopPropagation():e.cancelBubble = true;
 
7、获取事件源
 
e.target || e.srcElement

JS少数兼容

标签:prevent   com   样式   def   keycode   var   attr   style   scroll   

原文地址:https://www.cnblogs.com/-Los/p/9111850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!