jQuery在div中查找URL并在新选项卡中打开?

时间:2013-09-27 18:03:07

标签: jquery hyperlink anchor

我让jQuery在div中选择一个锚链接,并将其应用于整个div。我还希望它在新标签页中打开,如何选择它们?

$(".client-item").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
});

这个目前链接div,我只需要在某处添加target =“_ blank”。

3 个答案:

答案 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.location
var win=window.open(url, '_blank');
  win.focus();

这将在标签中打开,并专注于它。

http://jsfiddle.net/nKwV8/2/