js基础 - 兼容代码

时间:2021-03-19 21:21:13

js基础 - 兼容代码

.  scrollTop

    . chrome

      document.body.scrollTop

    . IE && firefox

      document.documentElement.scrollTop

.  阻止事件默认行为

    . 绑定事件

      . 主流浏览器

        e.preventDefault();

      . 低版本 IE 

        e.returnValue = false;

    . 没有绑定事件

      return false;

.  事件绑定

    . 主流浏览器

        obj.addEventListener(‘click‘, function () {}, false);

        PS:  false > 事件冒泡  true > 事件捕获

    . 低版本 IE 

        obj.attachEvent(‘onclick‘, function () {});

        PS:  function () {return this}  this === window

.  JS 拖拽时 选中文字

    . 主流浏览器

        return false;

    . 低版本 IE 

        . 捕获

          obj.setCapture()

        . 释放

          obj.releaseCapture();