標籤:toc turn 方法 attr isp blank www lib 跳轉
今天來看看前端的冒泡和事件預設事件如何處理
1.event.stopPropagation()方法
這是阻止事件的冒泡方法,不讓事件向documen上蔓延,但是預設事件任然會執行,當你掉用這個方法的時候,如果點擊一個串連,這個串連仍然會被開啟,
2.event.preventDefault()方法
這是阻止預設事件的方法,調用此方法是,串連不會被開啟,但是會發生冒泡,冒泡會傳遞到上一層的父元素;
3.return false ;
這個方法比較暴力,他會同事阻止事件冒泡也會阻止預設事件;寫上此代碼,串連不會被開啟,事件也不會傳遞到上一層的父元素;可以理解為return false就等於同時調用了event.stopPropagation()和event.preventDefault()
4.我們來看看幾組demo,使用jQuery進行DOM操作
這是html代碼,div裡面套了一個a標籤,串連到百度
[html] view plain copy print?
- <div class="box1">
- <a href="http://www.baidu.com" target="_blank"></a>
- </div>
css代碼,a標籤占父元素的空間的1/4,背景顏色為紅色;
[html] view plain copy print?
- .box1{
- height: 200px;
- width: 600px;
- margin: 0 auto;
- }
- .box1 a{
- display: block;
- height: 50%;
- width: 50%;
- background:red;
- }
下面來看js代碼,第一種
[html] view plain copy print?
- //不阻止事件冒泡和預設事件
-
- $(".box1").click(function(){
- console.log("1")//不阻止事件冒泡會列印1,頁面跳轉;
- });
第二種
[html] view plain copy print?
- //阻止冒泡
- $(".box1 a").click(function(event){
- event.stopPropagation();//不會列印1,但是頁面會跳轉;
-
- });
-
- $(".box1").click(function(){
- console.log("1")
- });
第三種
[html] view plain copy print?
- $(".box1 a").click(function(event){
- //阻止預設事件
- event.preventDefault();//頁面不會跳轉,但是會列印出1,
- });
-
- $(".box1").click(function(){
- console.log("1");
- });
第四種
[html] view plain copy print?
- $(".box1").click(function(){
- console.log("1")
- });
- //阻止冒泡
- $(".box1 a").click(function(event){
- event.stopPropagation();
- //阻止預設事件
- event.preventDefault() //頁面不會跳轉,也不會列印出1
- })
第五種
[html] view plain copy print?
- $(".box1").click(function(){
- console.log("1")
- });
- $(".box1 a").click(function(event){
- return false; //頁面不會跳轉,也不會列印出1,等於同時調用了event.stopPropagation()和event.preventDefault()
-
- });
Developer Test-Jquery-阻止冒泡