码迷,mamicode.com
首页 > 其他好文 > 详细

事件冒泡中的两个鼠标事件

时间:2014-06-14 10:56:29      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   java   http   tar   

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <style type ="text/css">
        #divf {
         width:400px;
         border :1px solid #0094ff;
         height :300px;
        }
      #divs {
         width:300px;
         border :1px solid #0094ff;
         height :200px;
        }
    </style>
    <script src="Scripts/jquery-1.8.2.min.js"></script>
    <script type ="text/javascript">
        $(function () {
            //1.0 mouseenter 不会触发事件冒泡
            //2.0 mouseover 会触发 事件冒泡
            document.getElementById("divf").onclick = function (c) {
                alert("divf,被点了" + c + "  target=" + c.target + "currentTarget=" + c.currentTarget);
                //target 表示当前触发事件的元素
                //currenttarget 表示当前执行事件的元素
            };

            document.getElementById("divs").onclick = function (c) {
                alert("divs,被点了" + c+" target="+c.target+"currentTarget="+c.currentTarget);
                // c.stopPropagation();//阻断事件冒泡
              
                c.preventDefault();//阻断事件的默认行为
            };
            $("div").click(function (e) {//此时的e事件参数由jquery传入
                alert(this.id + e);
                // e.stopPropagation();//阻断事件
             //   e.preventDefault();//阻断事件默认行为
            });
        });
    </script>
</head>
<body>
   <div  id ="divf">
       <div id="divs"></div>
   </div>
</body>
</html>

  

事件冒泡中的两个鼠标事件,布布扣,bubuko.com

事件冒泡中的两个鼠标事件

标签:style   class   blog   java   http   tar   

原文地址:http://www.cnblogs.com/sumg/p/3787726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!