标签:
1.js中事件是会冒泡的,所以this是可以变化的,但event.target不会变化,它永远是直接接受事件的目标DOM元素;
2.this和event.target都是dom对象,如果要使用jquey中的方法可以将他们转换为jquery对象:$(this)和$(event.target);
ex:
js代码
1 $(function(){ 2 $("li").live("click",function(event){ 3 $("#temp").html("clicked: " + event.target.nodeName); 4 $(event.target).css("color","#FF3300"); 5 }) 6 });
等同于
1 $(function(){ 2 $("li").live("click",function(event){ 3 $("#temp").html("clicked: " + event.target.nodeName); 4 $(this).css("color","#FF3300"); 5 event.stopPropagation(); 6 }) 7 });
注意this的话一定要组织时间冒泡,event.stopPropagation();或者return false;
标签:
原文地址:http://www.cnblogs.com/lijie33402/p/4543251.html