假设我的网站是 example.com,人们可以直接在浏览器中输入“example.com”来打开它。
但是我想检查人们是否从其他来源访问我的网站,例如谷歌或其他推荐。然后我想为这些访问者添加 jquery modal。可行吗?谢谢!
假设我的网站是 example.com,人们可以直接在浏览器中输入“example.com”来打开它。
但是我想检查人们是否从其他来源访问我的网站,例如谷歌或其他推荐。然后我想为这些访问者添加 jquery modal。可行吗?谢谢!
你不需要 JQuery;只是 JavaScript。document.referrer 属性将为您提供访问者在 example.com 之前所在的站点,应该可以为您解决问题。
var referrer = document.referrer;
Google Analytics也提供此推荐信息,您只需申请一个帐户,在您的 body 标签前添加一个脚本。
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'FILL-IN-YOUR-ACCOUNT']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>