Quantcast
Channel: w3cplus
Viewing all articles
Browse latest Browse all 1557

用jquery对外链用新窗口打开

$
0
0
$("a[href^='http://']").click(function(){
 this.target = "_blank";
});

或者使用下面这个

$(function(){
  $("a[href^='http://']").attr({'target':'_blank'})
})

Viewing all articles
Browse latest Browse all 1557

Trending Articles