使用jQuery在没有target=u blank的新窗口中打开外部链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery在没有target=u blank的新窗口中打开外部链接相关的知识,希望对你有一定的参考价值。
$(document).ready(function() { externalLink(); }); function externalLink() { $("a[@href^=http]").each( function(){ if(this.href.indexOf(location.hostname) == -1) { $(this).attr('target', '_blank'); } } ) };
以上是关于使用jQuery在没有target=u blank的新窗口中打开外部链接的主要内容,如果未能解决你的问题,请参考以下文章
jQuery:使用 target="_blank" 转到 URL