0

私はウェブサイトを持っていますmydomain.com

私が欲しい、

  • ビジター mydomain.com が images.google.com から来ている場合は、otherdomain.com/file1.js

  • 訪問者が別のドメインから来た場合は、otherdomain.com/file2.js

これを行うには、ドメインでどのような種類のスクリプトを使用すればよいですか? mydomain.com

4

1 に答える 1

1

あなたが持っている唯一のオプションは使用することdocument.referrerです; しかし、それは信頼できるものでも信頼できるものでもありません。

利用可能な場合document.referrerは、come-from URI を文字列として提供します。利用できない場合は空になります ( "")。

<script>
    if (document.referrer.indexOf('http://images.google.com/') === 0) {
        document.write('<script src="http://otherdomain.com/file1.js"><\/script>');
    } else {
        document.write('<script src="http://otherdomain.com/file2.js"><\/script>');
    }
</script>
于 2012-05-11T14:29:18.613 に答える