下面的简化 HTML 代码包括 2 个嵌套的点击事件(href 和 input)。当用户点击输入字段时,链接到 href 的 javascript 函数 SelectTable() 也会被触发,这不是目的。如何避免这种情况?
提前谢谢你的帮助。
编码:
<a href="javascript:SelectTable();">
<table id="tableproduct1" class="notselectedElement">
<tr>
<td> Number of elements: <input type="text" name="nrofelements"> </td>
</tr>
</table>
</a>