美文网首页
阻止事件默认行为

阻止事件默认行为

作者: 余东威_ | 来源:发表于2016-12-06 11:09 被阅读0次

    //  冒泡

    function stopBubble (e){

         if(e&&e.stopPropagation){

                e.stopPropagation();

          }else{

                window.event.cancelbubble();     //ie

        }

    }


    //  标签默认行为

    //  a ; 

    //  form-submmit按钮 | reset;

    //  右键

    function stopDefault (e){

            if(e&&e.preventDefault){

                 e.preventDefault();    //  ie8-不支持

           }else{

                  window.event.returnValue=false;   //  ie8 -  (兼容最好写法)

                   // return false; //可以阻止一部分写法,不会停止冒泡

            }

    }

    相关文章

      网友评论

          本文标题:阻止事件默认行为

          本文链接:https://www.haomeiwen.com/subject/zuxrmttx.html