Sending user to their browser's Home Page using Javascript

后端 未结 5 1104
庸人自扰
庸人自扰 2020-11-28 15:15

Is it possible to get a browser\'s home page using Javascript?

I\'d like to place a link on a page that goes to the home page set in the browser.

5条回答
  •  再見小時候
    2020-11-28 15:28

    window.home() didn't work for me in FF37, but this was fine:

    location.href = "about:home";
    

提交回复
热议问题