我让jQuery在div中选择一个锚链接,并将其应用于整个div。我还希望它在新标签页中打开,如何选择它们?
$(".client-item").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
这个目前链接div,我只需要在某处添加target =“_ blank”。
答案 0 :(得分:2)
您需要使用window.open
打开链接:
$(".client-item").click(function(){
window.open($(this).find("a").attr("href"));
return false;
});
答案 1 :(得分:1)
您可以查看window.open()
;
window.open($(this).find("a").attr("href"),"name of your window","","width=400,height=200");
答案 2 :(得分:1)
使用:
代替window.locationvar win=window.open(url, '_blank');
win.focus();
这将在标签中打开,并专注于它。