我有下面的代码,它可以工作,但什么是正确的方法来获取表 onclick 的 add
HTML
<div>
<h4 class="titlebar">
Skills
<small><a onclick="return false;" href="/add/" data-span="3">Add</a></small>
</h4>
<div class="body">
<table class="table">
<tbody>
<tr><td width="125"></td></tr>
</tbody>
</table>
</div>
</div>
jQuery
var TableBlock = $(this).closest('.titlebar').next().children('table');
this
指向添加链接