码迷,mamicode.com
首页 > Web开发 > 详细

jquery:e.target和this的区别

时间:2017-03-31 18:15:33      阅读:490      评论:0      收藏:0      [点我收藏+]

标签:验证   att   点击   stop   jquery   ati   eve   cli   log   

<ul name=‘grandfather‘>
<li name=‘father‘>
标题1
<div name=‘son‘>1
      <div>4</div>
      <div>5</div> 
     </div>
<div>2</div>
<div>3/div>
</li>
<li>
标题2
<div>2</div>
</li>
<li>
标题3
<div>3</div>
</li>
</ul>
$(‘ul‘).on(‘click‘,‘li‘,function(){
  //event.stopPropagation();
console.log(‘this是‘+$(this).attr(‘name‘))
console.log(‘$this的儿子的name是‘+$(this).children().attr(‘name‘))
$(this).children().css(‘color‘,‘red‘);
});

e.target是点击的目标元素;

this也是点击的目标元素,但因为事件会冒泡,所以this最终会指向事件所绑定的元素(这里是li);

当上述代码中加入event.stopPropagation()后,冒泡被阻止,this与e.target效果一样。(待验证)

jquery:e.target和this的区别

标签:验证   att   点击   stop   jquery   ati   eve   cli   log   

原文地址:http://www.cnblogs.com/jacksplwxy/p/6652558.html

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