我正在尝试添加指向表格行的链接并在单击时打开新选项卡。
下面的解决方案有效,但我需要在新选项卡中打开页面。
Javascript:
$(document).ready(function () {
$('#orders-table tr').click(function () {
var href = $(this).find("a").attr("href");
if (href) { window.location = href; }
});
});
HTML:
<tr href="/order?id=[ORDER_ID_LOCAL]" target="_blank">
Helenr
大话西游666
相关分类