通过单击包含链接的行重定向到链接

时间:2012-11-26 10:46:06

标签: jquery html-table click

我有一张桌子

<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的一些技巧,但它没有帮助。

更新: 我收到了像你这样的错误 enter image description here

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:0)

你也可以这样做,而不是模仿点击

$("table tr").click(function() {
 window.location.href= $(this).find("a").attr("href");
});