欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS阻止事件冒泡的方法详解

程序员文章站 2023-08-13 22:51:45
<%@ page language="c#" autoeventwireup="true" codefile="default5.aspx.cs"inheri...
<%@ page language="c#" autoeventwireup="true" codefile="default5.aspx.cs"inherits="default5"%>

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>porschev---jquery 事件冒泡</title>

<script src="jquery-1.3.2-vsdoc.js" type="text/javascript"></script>

</head>
<body>
  <form id="form1" runat="server">
    <div id="divone" onclick="alert('我是最外层');">
      <div id="divtwo" onclick="alert('我是中间层!')">
        <a id="hr_three" href="http://www.baidu.com" rel="external nofollow" rel="external nofollow" mce_href="http://www.baidu.com" rel="external nofollow" rel="external nofollow" onclick="alert('我是最里层!')">点击我</a>
      </div>
    </div>
  </form>
</body>
</html>

比如上面这个页面,

分为三层:divone是第外层,divtwo中间层,hr_three是最里层;

他们都有各自的click事件,最里层a标签还有href属性。

运行页面,点击“点击我”,会依次弹出:我是最里层---->我是中间层---->我是最外层

---->然后再链接到百度.

这就是事件冒泡,本来我只点击id为hr_three的标签,但是确执行了三个alert操作。

事件冒泡过程(以标签id表示):hr_three----> divtwo----> divone 。从最里层冒泡到最外层。

如何来阻止?

1.event.stoppropagation();

<script type="text/javascript">
    $(function() {
      $("#hr_three").click(function(event) {
        event.stoppropagation();
      });
    });
<script>

再点击“点击我”,会弹出:我是最里层,然后链接到百度

2.return false;

如果头部加入的是以下代码

<script type="text/javascript">
$(function() {
  $("#hr_three").click(function(event) {
    return false;
  });
});
<script>

再点击“点击我”,会弹出:我是最里层,但不会执行链接到百度页面

由此可以看出:

1.event.stoppropagation();

事件处理过程中,阻止了事件冒泡,但不会阻击默认行为(它就执行了超链接的跳转)

2.return false;

事件处理过程中,阻止了事件冒泡,也阻止了默认行为(比如刚才它就没有执行超链接的跳转)

还有一种有冒泡有关的:

3.event.preventdefault();

如果把它放在头部a标签的click事件中,点击“点击我”。

会发现它依次弹出:我是最里层---->我是中间层---->我是最外层,但最后却没有跳转到百度

它的作用是:事件处理过程中,不阻击事件冒泡,但阻击默认行为(它只执行所有弹框,却没有执行超链接跳转)

以上就是本次介绍的全部知识点内容,感谢大家对的支持。