该event.target
函数适用于 div 而不适用于 table 元素。
html代码:
<div class="one body" >
sd
</div>
<div class="two body">
sddsd
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="three body">jjj</table>
js:
$(".body").click(function(e){
alert("xxxxxxxxx"+e.target.className);
});
演示:http: //jsfiddle.net/kavinhuh/z4rkW/31/