摘要: 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 阅读(4738) 评论(0) 推荐(0) 编辑