我正在使用下面的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');
中調整一些東西,但我不知道該怎麼做。
試試這個location.href = $(本).find( 'TD> A')ATTR( 'href' 屬性)。 –
location.href = $(this).find('td> a')。attr('href');這不會做任何改變,它仍然會在新頁面中打開,而不是彈出窗口。 – user3733945