zoukankan      html  css  js  c++  java
  • js基础

    js基础 - 兼容代码

    1.  scrollTop
    
        1. chrome
    
          document.body.scrollTop
    
        2. IE && firefox
    
          document.documentElement.scrollTop
    
     
    
    2.  阻止事件默认行为
    
        1. 绑定事件
    
          1. 主流浏览器
    
            e.preventDefault();
    
          2. 低版本 IE 
    
            e.returnValue = false;
    
        2. 没有绑定事件
    
          return false;
    
     
    
    3.  事件绑定
    
        1. 主流浏览器
    
            obj.addEventListener(‘click‘, function () {}, false);
    
            PS:  false > 事件冒泡  true > 事件捕获
    
        2. 低版本 IE 
    
            obj.attachEvent(‘onclick‘, function () {});
    
            PS:  function () {return this}  this === window
    
     
    
    4.  JS 拖拽时 选中文字
    
        1. 主流浏览器
    
            return false;
    
        2. 低版本 IE 
    
            1. 捕获
    
              obj.setCapture()
    
            2. 释放
    
              obj.releaseCapture();
  • 相关阅读:
    FZU 2150 Fire Game
    POJ 3414 Pots
    POJ 3087 Shuffle'm Up
    POJ 3126 Prime Path
    POJ 1426 Find The Multiple
    POJ 3278 Catch That Cow
    字符数组
    HDU 1238 Substing
    欧几里德和扩展欧几里德详解 以及例题CodeForces 7C
    Codeforces 591B Rebranding
  • 原文地址:https://www.cnblogs.com/hupan508/p/4900139.html
Copyright © 2011-2022 走看看