jQuery:在外部窗口中打开链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery:在外部窗口中打开链接相关的知识,希望对你有一定的参考价值。
Better than previous version. You don't have to mark up your links with 'rel=external'.
jQuery('a[href^=h]').each(function(){ if (this.hostname !== location.hostname) { jQuery(this).attr({ target: "_blank", title: this.href + " (External link, click to open in a new window)" }); } });
以上是关于jQuery:在外部窗口中打开链接的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript 通过Javascript在外部窗口中打开链接