<table>
  <tr onclick="clickTr(this)>
    <td>
       <input type='checkbox' name="${id}" onclick="clickCheckbox(this)"/>
     </td>
  </tr>
</table>
html如上。
点击checkbox的时候,执行完clickCheckbox(this)后会再出发clickTr(this)事件。现在只要clickCheckbox(this),怎么把clickTr(this)屏蔽掉?不想用变量控制,有什么别的办法吗?