1

我有一张桌子

<tr>
  <td>xxx</td>
  <td>yyy</td>
  <td><a href="javascript:__doPostBack('smth','')">Select</a></td>
</tr>
<tr>
...similar here
</tr>

我的目标是通过单击该行重定向到选择页面链接。我试图实施这样的建设

$("table tr").click(function() {
  $(this).find("a").click();
});

还有一些技巧,window.location但没有帮助。

更新: 我收到类似的错误
在此处输入图像描述

4

2 回答 2

2
$("table tr").click(function() {
  eval($(this).find("a").attr("href"));
});
于 2012-11-26T13:07:15.123 回答
0

您也可以这样做,而不是模拟点击

$("table tr").click(function() {
 window.location.href= $(this).find("a").attr("href");
});
于 2012-11-26T10:52:58.617 回答