第804天:js通过获取地址栏参数跳转页面,进展

星期一 晴转多云 29~39℃

js通过获取地址栏参数跳转页面

对于外链,如果直接用 <a href="http://www.***.net">外链</a> 就会暴露自己的地址,如果不想让对方知道确切来路,下面是一个方法。

网上找来的一段js

文件:gourl.html

<script type="text/javascript">
Request = {
 QueryString : function(item){
  var svalue = location.search.match(new RegExp("[\?\&]" + item + "=([^\&]*)(\&?)","i"));
  return svalue ? svalue[1] : svalue;
 }
}
window.location=Request.QueryString("refer");
alert(Request.QueryString(‘refer’));
</script>

在其他页面调用:<a href="gourl.html?refer=http://www.***.net">外链</a>

用处:在对方的来路统计中,来路都是显示 gourl.html。


进展

  • 完成“推荐文章到友吧”页面。
  • 优化几处 css。
  • 调整评论区样式。
  • 评论数的 js 统计没弄好,还得 Ryan 出马。

RSS

上一篇:

下一篇:

发表评论

电子邮件地址不会被公开。 必填项已用*标注