zoukankan      html  css  js  c++  java
  • javaScript的一些兼容性问题

    001、获取滚动条滚动的距离

    var sTop = document.documentElement.scrollTop || document.body.scrollTop

    002、获取非行间样式

    IE: currentStyle[attr]
    
    标准: getComputedStyle[attr]
    
        function getStyle(obj,attr){
    
            if(obj.currentStyle){
    
                return obj.currentStyle[attr]
    
            }else{
    
                return getComputedStyle(obj,false)[attr];
    
            }
    
        }     

    003、获取事件对象

    var e = e || event;

    004获取键盘信息

    e.keyCode || e.which

    005阻止浏览器的默认行为

    function prevent(e){
    
        if(e.preventDefault){
    
            e.preventDefault();
        
        }else{
    
            e.returnValue = false;
    
        }
    
    }

    006阻止事件冒泡

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

    007事件监听

    addEventListener()
    
    attachEvent()

    008事件解绑

    removeEventListener()
    
    detachEvent()

    009获取事件源

    e.target || e.srcElement;

    010ajax兼容

    var xhr = new XMLHttpRequest() || new ActiveXObject("Microsoft,XMLHTTP");
  • 相关阅读:
    python基础4
    python的基础数据类型和编码
    python的if语句和while循环
    java特殊运算符
    深入理解java集合
    python常用模块
    python函数的参数问题
    集合关系之间的运算
    集合
    可变类型与不可变类型
  • 原文地址:https://www.cnblogs.com/shy0113/p/10544404.html
Copyright © 2011-2022 走看看