2012-11-26 65 views
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一些小技巧,但它並沒有幫助。

更新: 我得到這樣的錯誤
enter image description here

+0

你有什麼應該工作。你有任何控制檯錯誤? –

+0

是的,我收到錯誤。我更新了我的帖子。 – Shymep

回答

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

你也可以這樣做,而不是模擬點擊

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