什麼是jquery事件冒泡

admin發表於2017-02-02
在很多教材或者手冊都可能會涉及到事件冒泡的概念,老手來說這當然是最基本的概念,但往往對於初學者可能比較陌生或者說從來沒有聽說過。下面就結合程式碼例項來簡單介紹一下什麼是事件冒泡。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>事件冒泡</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#second").click(function(){
    alert("我是second");        
  })
  $("#first").click(function(){
    alert("我是first");        
  })
})
</script>
</head>
<body>
<p id="first"><a id="second" href="http://www.baidu.com">點選檢視效果</a></p>
</body>
</html>

相關文章