window.location.hash 使用说明

  var hash;

  hash = (!window.location.hash)?"#search":window.location.hash;

  window.location.hash = hash;

  //这里我们解释一下(!window.location.hash)什么意思?首先如果当前页面的地址栏的链接地址 不包含#....的这些的话,直接取值的话,他会为空!比如这个例子,https://www.jb51.net/直接取 alert(window.location.hash)//""空 转化为 boolean值 为 false

  // 如果 https://www.jb51.net#hello,world直接取 alert(window.location.hash)//#hello,world 转化为 boolean值 为 true

  //下面的就是 可以用switch判断

  //调整地址栏地址,使前进、后退按钮能使用

  switch(hash){

  case "#search":

  show("panel1");

  break;

  case "#advsearch":

  show("panel2");

  break;

  case "#adminboss":

  show("panel3");

  break;

  }