我的HTML + jQuery代码有问题。
我想将我的表格行设置为某些内容的链接,但我不知道如何添加target =" _blank"归因于此。有人可以帮我解决这个问题吗?
HTML
<tr class='clickableRow' data-url="http://tbc.designcrown.co.uk/go/siteground">
<td>Sample</td>
</tr>
的jQuery
jQuery(document).ready(function($) {
$(".clickableRow").click(function() {
window.document.location = $(this).data('url');
});
});
答案 0 :(得分:0)
您无法在实际<a />
标记的任何位置使用目标属性。您可以做的是调用window.open()
来创建弹出窗口。
例如:
window.open('http://www.stackoverflow.com/','StackOverflow','resizable=1,status=1,menubar=1,toolbar=1,scrollbars=1,location=1,directories=1,width=350,height=350,top=60,left=60')
这是一个生成适当的JS的工具:http://www.ricocheting.com/code/javascript/html-generator/popup-window。