サイト全体から外部の Web サイトへのリンクを起動する jQuery チェックを追加する必要があります。どうすれば次のことができますか:
ホスト名に「xyz」が含まれていないアンカー リンクを探します。例えば:
http://xyz.com
http://asfasdfadsfadsf.xyz.com
ただし、ホスト名の後に xyz を含むリンクは無視する必要があります。
http://someothersite.com/xyz
$('a[href^="http://%xyz%"]').filter(function() { return this.hostname && this.hostname !== location.hostname; }).attr('target', '_blank');