当前位置:   article > 正文

JS、Vue、React阻止事件冒泡及阻止默认事件_react 阻止默认行为

react 阻止默认行为

JS阻止事件冒泡及阻止默认事件解决方案:

1、event.preventDefault —— 阻止默认

Event 接口的 preventDefault()方法,告诉user agent:如果此事件没有被显式处理,它默认的动作也不应该照常执行。此事件还是继续传播,除非碰到事件侦听器调用stopPropagation() 或stopImmediatePropagation(),才停止传播。

示例:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p { height: 30px; width: 150px; background-color: #ccf; }
  6. div {height: 30px; width: 100%; background-color: #cfc; }
  7. </style>
  8. </head>
  9. <body>
  10. <form>
  11. <label for="id-checkbox">Checkbox:</label>
  12. <input type="checkbox" id="id-checkbox"/>
  13. </form>
  14. <div id="output-box"></div>
  15. <script>
  16. document.querySelector("#id-checkbox").addEventListener("click", function(event) {
  17. document.getElementById("output-box").innerHTML += "Sorry! <code>preventDefault()</code> won't let you check this!<br>";
  18. event.preventDefault();
  19. }, false);
  20. </script>
  21. </body>
  22. </html>
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. .warning {
  6. border: 2px solid #f39389;
  7. border-radius: 2px;
  8. padding: 10px;
  9. position: absolute;
  10. background-color: #fbd8d4;
  11. color: #3b3c40;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div class="container">
  17. <form>
  18. <input type="text" id="my-textbox">
  19. </form>
  20. </div>
  21. <script>
  22. var myTextbox = document.getElementById('my-textbox');
  23. myTextbox.addEventListener('keypress', checkName, false);
  24. function checkName(evt) {
  25. var charCode = evt.charCode;
  26. if (charCode != 0) {
  27. if (charCode < 97 || charCode > 122) {
  28. evt.preventDefault();
  29. displayWarning(
  30. "Please use lowercase letters only."
  31. + "\n" + "charCode: " + charCode + "\n"
  32. );
  33. }
  34. }
  35. }
  36. var warningTimeout;
  37. var warningBox = document.createElement("div");
  38. warningBox.className = "warning";
  39. function displayWarning(msg) {
  40. warningBox.innerHTML = msg;
  41. if (document.body.contains(warningBox)) {
  42. window.clearTimeout(warningTimeout);
  43. } else {
  44. // insert warningBox after myTextbox
  45. myTextbox.parentNode.insertBefore(warningBox, myTextbox.nextSibling);
  46. }
  47. warningTimeout = window.setTimeout(function() {
  48. warningBox.parentNode.removeChild(warningBox);
  49. warningTimeout = -1;
  50. }, 2000);
  51. }
  52. </script>
  53. </body>
  54. </html>

2、event.stopImmediatePropagation —— 下阻止冒泡

Event 接口的 stopImmediatePropagation() 方法阻止监听同一事件的其他事件监听器被调用。

如果多个事件监听器被附加到相同元素的相同事件类型上,当此事件触发时,它们会按其被添加的顺序被调用。如果在其中一个事件监听器中执行 stopImmediatePropagation() ,那么剩下的事件监听器都不会被调用。

示例:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p { height: 30px; width: 150px; background-color: #ccf; }
  6. div {height: 30px; width: 100%; background-color: #cfc; }
  7. </style>
  8. </head>
  9. <body>
  10. <div>
  11. <p>paragraph</p>
  12. </div>
  13. <script>
  14. const div = document.querySelector('div')
  15. const p = document.querySelector('p')
  16. p.addEventListener("click", (event) => {
  17. alert("div");
  18. }, false);
  19. p.addEventListener("click", (event) => {
  20. alert("p");
  21. }, false);
  22. p.addEventListener("click", (event) => {
  23. alert("p1");
  24. event.stopImmediatePropagation();
  25. // 执行stopImmediatePropagation方法,阻止click事件冒泡,并且阻止p元素上绑定的其他click事件的事件监听函数的执行.
  26. }, false);
  27. p.addEventListener("click",(event) => {
  28. alert("p2");
  29. // 该监听函数排在上个函数后面,该函数不会被执行
  30. }, false);
  31. document.querySelector("div").addEventListener("click", (event) => {
  32. alert("p3,我是p元素的上层元素");
  33. // p元素的click事件没有向上冒泡,该函数不会被执行
  34. }, false);
  35. </script>
  36. </body>
  37. </html>

3、event.stopPropagation —— 上阻止冒泡

阻止捕获和冒泡阶段中当前事件的进一步传播。

但是,它不能防止任何默认行为的发生; 例如,对链接的点击仍会被处理。

如果要停止这些行为,请参见 preventDefault 方法,它可以阻止事件触发后默认动作的发生。

示例:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p { height: 30px; width: 150px; background-color: #ccf; }
  6. div {height: 30px; width: 100%; background-color: #cfc; }
  7. </style>
  8. </head>
  9. <body>
  10. <div>
  11. <p>paragraph</p>
  12. </div>
  13. <script>
  14. const div = document.querySelector('div');
  15. const p = document.querySelector('p');
  16. div.addEventListener("click", (event) => {
  17. alert("div");
  18. }, false);
  19. p.addEventListener("click", (event) => {
  20. event. stopPropagation();
  21. alert("p");
  22. }, false);
  23. </script>
  24. </body>
  25. </html>

4、return false —— 这是个蛋蛋?

示例:默认的JS只会触发preventDefault(),因此只有在JQ中return false相当于同时执行了event.stopPropagation()和event.preventDefault()。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p { height: 30px; width: 150px; background-color: #ccf; }
  6. div {height: 30px; width: 100%; background-color: #cfc; }
  7. </style>
  8. </head>
  9. <body>
  10. <div onclick="clickDiv()">
  11. <p onclick="clickP()">paragraph</p>
  12. </div>
  13. <script>
  14. function clickDiv() {
  15. alert("div");
  16. }
  17. function clickP() {
  18. alert("p");
  19. return false;
  20. }
  21. </script>
  22. </body>
  23. </html>

Vue阻止事件冒泡解决方案:

  1. <div @click="clickDiv">
  2. <button @click="clickButton"></button>
  3. </div>
  4. clickDiv = () => {
  5. alert("div");
  6. },
  7. clickButton = (event) => {
  8. alert("button");
  9. event.stopPropagation();
  10. },
  11. 或者:
  12. <div @click="clickDiv">
  13. <button @click.stop="clickButton"></button>
  14. </div>
  15. clickDiv = () => {
  16. alert("div");
  17. },
  18. clickButton = (event) => {
  19. alert("button");
  20. },
  21. // 也可以同时串联其他修饰,比如:
  22. @click.stop.prevent=”clickHere“

React阻止事件冒泡解决方案:

  1. <div onClick={clickDiv}>
  2. <button onClick={clickButton}></button>
  3. </div>
  4. const clickDiv = () => {
  5. alert("div");
  6. }
  7. const clickButton = (event) => {
  8. alert("button");
  9. event.stopPropagation();
  10. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/79395
推荐阅读
相关标签
  

闽ICP备14008679号