在页面中的js代码中加上下面这句话即可。
window.onload = function(){
var url = window.location.href;
var ps = url.split("#");
try{
if(ps[1] != 1){
url += "#1";
}else{
window.location = ps[0];
}
}catch(ex){
url += "#1";
}

window.location.replace(url);

};

相关文章:

  • 2021-09-06
  • 2021-07-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-01
  • 2021-11-05
相关资源
相似解决方案