javascript - 如何去除设置 location.hash 后的 # 号?
PHPz
PHPz 2017-04-10 14:57:53
0
3
724

设置了 window.location.hash=“abc”后,url后面自动加上了“#abc”。这时候要怎么设置才能把“#abc”去掉呢?设置hash=“”只能去掉“abc”,还会残留一个#

PHPz
PHPz

学习是最好的投资!

全部回覆 (3)
阿神

history api(只支持现代浏览器)

history.replaceState(null,'',location.pathname+location.search);

location.replace(导致页面重新加载)

location.replace(location.pathname+location.search);
    阿神

    location.hash本来就是指 URL 里#符号及其后的部分,如果你是要做路由映射并且不想用基于 hash 的方案,那你应该考虑 HTML5 的 History API。不过这个是要考虑向后兼容的,部署上也会要做一些配置才能正常工作。

      左手右手慢动作

      delete location.hash

        最新下載
        更多>
        網站特效
        網站源碼
        網站素材
        前端模板
        關於我們 免責聲明 Sitemap
        PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!