Total Pageviews

Wednesday, 7 January 2015

使用 jQuery 在新窗口打开外部链接

我们一般都希望在新窗口打开外部链接,这样用户不需要离开网站就能访问外部链接,但是如果每个外部链接都手工加上新窗口打开的属性代码的话,这会让人非常抓狂,并且 target=”_blank” 也不符合 XHTML 1.0 Strict标准。
使用 jQuery,我们只需要几行代码就能在新窗口中打开外部链接。
——————————————–分割线————————————————————–
<script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js”></script>
<script language=”JavaScript” type=”text/javascript”>
$(document).ready(function() {$(“a[href*=’http://’]:not([href*='”+location.hostname+”‘]),[href*=’https://’]:not([href*='”+location.hostname+”‘])”)
.addClass(“external”)
.attr(“target”,”_blank”);
});
</script>
——————————————–分割线————————————————————–
将以上代码插入到你需要修改的htm页面中即可.