我将backbone.js用于我的项目,它是一个单页网站。
我想问一下如何在刷新后返回主URL。
例如,主要网址是
其他网址
http://example.dev/#contact,http://example.dev/#about
现在,如果网址位于http://example.dev/#contact,我希望点击刷新按钮后,网址会返回http://example.dev/#。
我该怎么做?
答案 0 :(得分:1)
您可以为此
使用onbeforeunload
事件
window.onbeforeunload = function () {
window.location.hash = '';
}