从Index.html更改为Index.html #home

时间:2016-07-10 03:53:16

标签: javascript jquery html css

我正在向某人发送我正在创建的网站草稿。然而,网站的设计方式,主屏幕是一个“#href”链接,是“#home”。当我从我的电脑打开网站时,它会转到..... / Index.html,但我需要它去.... / Index.html#home页面加载。这怎么可能?

2 个答案:

答案 0 :(得分:3)

在脚本部分

中使用此脚本
window.onload = function (event) { window.location.hash = "#home"; }; 

答案 1 :(得分:0)

只需应用简单的if语句:

document.onload = function(){
    if(!window.location.hash){
          window.location.hash="#home";
    }
}