自动使用jQuery在新窗口中打开外部链接(首先检查域)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动使用jQuery在新窗口中打开外部链接(首先检查域)相关的知识,希望对你有一定的参考价值。
Automatically use jQuery to Open External Links in New Window (checking domain first).
// open external links in new window (checking domain first) jQuery("a[href^='http']:not([href*='" + document.domain + "'])").each(function () { jQuery(this).attr("target", "_blank"); });
以上是关于自动使用jQuery在新窗口中打开外部链接(首先检查域)的主要内容,如果未能解决你的问题,请参考以下文章