js 跳转到html根目录下的首页
location.href = "/index.html";
但是需要注意的是,如果网站有虚拟目录,就会出问题,比如网站有虚拟目录api,其首页为
https://www.example.com/api/index.html
使用
location.href = "/index.html";
则会变成
https://www.example.com/index.html
就会报错,无法跳转到首页
location.href = "/index.html";
但是需要注意的是,如果网站有虚拟目录,就会出问题,比如网站有虚拟目录api,其首页为
https://www.example.com/api/index.html
使用
location.href = "/index.html";
则会变成
https://www.example.com/index.html
就会报错,无法跳转到首页