我正在使用以下javascript进行完整的表格行选择,这非常有效。
<script type="text/javascript">
$(function()
{
$('#link-table td:first-child').hide();
$('#link-table tr').hover(function ()
{
$(this).toggleClass('Highlight');
});
$('#link-table tr').click(function ()
{
location.href = $(this).find('td a').attr('href');
});
});
现在,我想打开Top up Popop中所选行中的链接,但调整href
不起作用。
我想,我必须在location.href = $(this).find('td a').attr('href');
中调整一些内容,但我不知道如何做到这一点。
答案 0 :(得分:0)
此代码将解决您的问题
$(this).find('td a').click();