我有一个简单的表:
<tr>
<td>
<a href="/patients/5"> … </a>
</td>
....
我试图在用户单击 tr 时触发链接:所以我编写了以下代码:
<script>
$("tr").click(function(){
this.next("a").click();
})
</script>
首先我得到了这个错误:
Object #<HTMLTableRowElement> has no method 'next'
接下来我尝试了:
<script>
$("tr").click(function(){
this.siblings().click();
})
</script>
但后来我得到这个错误:
Object #<HTMLTableRowElement> has no method 'siblings'
我错了什么?