摘要:
1. JavaScript/** * 获取HTTP请求的Referer * @ishost 布尔类型 Referer为空时是否返回Host(网站首页地址) */function get_http_referer(ishost) { if (ishost === undefined) { ishost = true; } if (document.referrer) { return document.referrer; } else { if (ishost) { return window.location.protocol... 阅读全文
posted @ 2013-11-26 19:59
Rain Man
阅读(4769)
评论(0)
推荐(0)
浙公网安备 33010602011771号