我有这个代码:
$('.table-striped tr').click( function() {
var link = $(this).find('a').attr('href');
if(link != 'undefined') {
window.location = link;
}
}).hover( function() {
$(this).toggleClass('hover');
});
它运行良好(<a>
隐藏)。我还有一个很好的 CSS 规则来td:hover
突出显示整行。
我现在想念的是:
- 右键单击能够“在新选项卡/窗口中打开”
- 中键单击
你知道怎么做吗?