取消html中onclick的事件冒泡
阿新 • • 發佈:2018-12-25
value event stop 參數 top javascrip pro round sed
阻止html中onclick事件冒泡,處理方法上多加事件一個參數,不需要傳值。
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <meta charset="utf-8" /> </head> <body> <div style=‘background:red;width:200px;height:50px‘View Codeonclick=‘a()‘> <input type=‘button‘ value=‘ok‘ onclick=‘b()‘></input> </div> <script type="text/javascript"> function a(e){ alert("this div") } function b(e){ alert("this button") if(e&&e.stopPropagation){ e.stopPropagation(); }else{ window.event.cancelBubble =true; } } </script> </body> </html>
結果:阻止,button按鈕上的click事件冒泡
取消html中onclick的事件冒泡