1. <tfoot id='wuJEC'></tfoot>
        <bdo id='wuJEC'></bdo><ul id='wuJEC'></ul>

      <small id='wuJEC'></small><noframes id='wuJEC'>

      <legend id='wuJEC'><style id='wuJEC'><dir id='wuJEC'><q id='wuJEC'></q></dir></style></legend>
      <i id='wuJEC'><tr id='wuJEC'><dt id='wuJEC'><q id='wuJEC'><span id='wuJEC'><b id='wuJEC'><form id='wuJEC'><ins id='wuJEC'></ins><ul id='wuJEC'></ul><sub id='wuJEC'></sub></form><legend id='wuJEC'></legend><bdo id='wuJEC'><pre id='wuJEC'><center id='wuJEC'></center></pre></bdo></b><th id='wuJEC'></th></span></q></dt></tr></i><div id='wuJEC'><tfoot id='wuJEC'></tfoot><dl id='wuJEC'><fieldset id='wuJEC'></fieldset></dl></div>

      1. JavaScript阻止事件冒泡的方法

        时间:2023-12-09
        <i id='khCyO'><tr id='khCyO'><dt id='khCyO'><q id='khCyO'><span id='khCyO'><b id='khCyO'><form id='khCyO'><ins id='khCyO'></ins><ul id='khCyO'></ul><sub id='khCyO'></sub></form><legend id='khCyO'></legend><bdo id='khCyO'><pre id='khCyO'><center id='khCyO'></center></pre></bdo></b><th id='khCyO'></th></span></q></dt></tr></i><div id='khCyO'><tfoot id='khCyO'></tfoot><dl id='khCyO'><fieldset id='khCyO'></fieldset></dl></div>
          <legend id='khCyO'><style id='khCyO'><dir id='khCyO'><q id='khCyO'></q></dir></style></legend>

            <small id='khCyO'></small><noframes id='khCyO'>

              <tbody id='khCyO'></tbody>

          1. <tfoot id='khCyO'></tfoot>

                • <bdo id='khCyO'></bdo><ul id='khCyO'></ul>
                • JavaScript中阻止事件冒泡是前端开发过程中常见的需求。事件冒泡是指当一个元素上的事件被触发时,它会向父级元素传递,直到最顶层的元素。在某些情况下,我们需要阻止这种事件冒泡,使事件只在当前元素上执行。以下是阻止事件冒泡的三种方法:

                  方法一:使用event.stopPropagation

                  在事件回调函数中使用event.stopPropagation可以阻止事件冒泡。该方法能够取消事件的进一步捕获或冒泡,防止事件传递到父级元素。

                  document.querySelector('#child').addEventListener('click', function(event) {
                    event.stopPropagation();
                    console.log('child clicked');
                  });
                  document.querySelector('#parent').addEventListener('click', function(event) {
                    console.log('parent clicked');
                  });
                  

                  在上述示例中,当我们点击子元素时,只会触发子元素上的事件处理函数,父元素不会收到事件。

                  方法二:使用event.cancelBubble

                  在早期的JavaScript版本中使用event.cancelBubble阻止事件冒泡。现在不再推荐使用该方法,原因是该方法只在IE中适用,不兼容现代浏览器。

                  document.querySelector('#child').addEventListener('click', function(event) {
                    event.cancelBubble = true;
                    console.log('child clicked');
                  });
                  document.querySelector('#parent').addEventListener('click', function(event) {
                    console.log('parent clicked');
                  });
                  

                  方法三:使用return false

                  将事件回调函数返回false同样可以阻止事件冒泡,但是这种方法不仅阻止事件冒泡,还阻止了默认的事件操作。因此只有在不需要默认事件操作时使用该方法。

                  document.querySelector('#child').addEventListener('click', function(event) {
                    console.log('child clicked');
                    return false;
                  });
                  document.querySelector('#parent').addEventListener('click', function(event) {
                    console.log('parent clicked');
                  });
                  

                  在上述示例中,当我们点击子元素时,只有子元素的事件处理函数执行,而且不会发生默认的链接跳转。

                  总结:以上三种方法都可以阻止事件冒泡,但是推荐使用第一种方法,即在事件处理函数中使用event.stopPropagation。因为它能够清晰地表达你的意图,而且不会产生副作用。

                  上一篇:网易JS面试题与Javascript词法作用域说明 下一篇:js禁止表单重复提交

                  相关文章

                  1. <i id='MotVT'><tr id='MotVT'><dt id='MotVT'><q id='MotVT'><span id='MotVT'><b id='MotVT'><form id='MotVT'><ins id='MotVT'></ins><ul id='MotVT'></ul><sub id='MotVT'></sub></form><legend id='MotVT'></legend><bdo id='MotVT'><pre id='MotVT'><center id='MotVT'></center></pre></bdo></b><th id='MotVT'></th></span></q></dt></tr></i><div id='MotVT'><tfoot id='MotVT'></tfoot><dl id='MotVT'><fieldset id='MotVT'></fieldset></dl></div>

                  2. <tfoot id='MotVT'></tfoot>

                    <legend id='MotVT'><style id='MotVT'><dir id='MotVT'><q id='MotVT'></q></dir></style></legend>

                    <small id='MotVT'></small><noframes id='MotVT'>

                      • <bdo id='MotVT'></bdo><ul id='MotVT'></ul>