如何阻止链接被跟踪(使用此事件处理程序)?
http://jsfiddle.net/chovy/rsqH7/1/
<table>
<tbody>
<tr class="msg">
<header><a href="http://cnn.com">cnn.com</a></header></tr>
</tbody>
</table>
$('table').on('click', 'tr.msg header', function (e) {
e.preventDefault();
var $el = $(e.currentTarget);
console.log($el);
});