冒泡 捕獲概念性的東西了解了,一直不知道有什么作用。因?yàn)橐郧爸苯荧@取dom元素,添加事件也沒發(fā)現(xiàn)什么點(diǎn)一個按鈕,其父級也沒什么改變啊。雖然早就知道冒泡捕獲,實(shí)際應(yīng)用中也沒出什么亂子,所以昨天才仔細(xì)看一遍。就有些不理解了,請看下面的例子兩種形式添加均沒變化,點(diǎn)擊btn就是btn彈出你好,box什么也不顯示請輸入代碼<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="box"> <input type="button" value="按鈕1" id="btn1" /> </div> <script> window.onload=function(){ var btn1=document.getElementById("btn1"); var box=document.getElementById("box1");// btn1.onclick=function(){// alert("你好");// };// box.onclick=function(){// alert("hellow world")// }btn1.addEventListener("click",function(){alert("你好")},false);box.addEventListener("click",function(){alert("hellow world")},false); } </script> </body></html>
JS中的事件冒泡
有只小跳蛙
2018-09-18 09:09:47