我有一个网站mydomain.com
我想,
如果访问者 mydomain.com 来自 images.google.com 然后调用
otherdomain.com/file1.js
如果访问者来自另一个域,则调用
otherdomain.com/file2.js
我应该在我的域上使用哪种脚本来执行此操作?mydomain.com
我有一个网站mydomain.com
我想,
如果访问者 mydomain.com 来自 images.google.com 然后调用otherdomain.com/file1.js
如果访问者来自另一个域,则调用otherdomain.com/file2.js
我应该在我的域上使用哪种脚本来执行此操作?mydomain.com
您唯一的选择是使用document.referrer
; 但它不可靠或不值得信赖。
可用时,document.referrer
将为您提供来自 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>