强制 History.js 使用哈希 URL 回退

发布于 2025-01-03 07:02:25 字数 243 浏览 0 评论 0原文

是否可以强制使用 History.js - https://github.com/browserstate/History.js/< /a> - 在支持 HTML5/history API 的浏览器中使用哈希 URL?

这仅适用于本地测试,因此如果需要的话,摆弄 History.js 源就可以了。

Is it possible to force History.js - https://github.com/browserstate/History.js/ - to use the hash URLs in a browser which does support HTML5/history API?

This is only for local testing, so fiddling with the History.js source is fine if that's required.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

定格我的天空 2025-01-10 07:02:25

我想做同样的事情来进行测试,并最终更新了 jquery.history.js 库中的以下几行。

原文:(在 GitHub 上查看)

m.emulated={pushState:!Boolean(a.history&&a.history.pushState&&a.history.replaceState&&!/ Mobile\/([1-7][a-z]|(8([abcde]|f(1[0-8]))))/i.test(e.userAgent)&&!/AppleWebKit\/5([0-2]|3[0-2])/i.test(e.userAgent)),hashChange:Boolean(!("onhashchange"in a||"onhashchange"in d)||m.isInternetExplorer()&&m.getInternetExplorerMajorVersion()<8)}

黑客解决方案:

m.emulated={pushState:true,hashChange:true}

我使用的是 HTML4+HTML5 捆绑的缩小代码,但该行对应于 History.js 未压缩文件中的第 269 行。如果您使用不同的版本,相应的部分位于:

Unminified Original (在 GitHub 上查看):

History.emulated = {
pushState: !Boolean(
window.history && window.history.pushState && window.history.replaceState
&& !(
(/ Mobile\/([1-7][a-z]|(8([abcde]|f(1[0-8]))))/i).test(navigator.userAgent) /* disable for versions of iOS before version 4.3 (8F190) */
|| (/AppleWebKit\/5([0-2]|3[0-2])/i).test(navigator.userAgent) /* disable for the mercury iOS browser, or at least older versions of the webkit engine */
)
),
hashChange: Boolean(
!(('onhashchange' in window) || ('onhashchange' in document))
||
(History.isInternetExplorer() && History.getInternetExplorerMajorVersion() < 8)
)
};

黑客解决方案:

History.emulated = {
    pushState: true,
    hashChange: true
    };

I wanted to do the same thing for testing purposes and ended up updating the following lines in the jquery.history.js library.

Original: (View on GitHub)

m.emulated={pushState:!Boolean(a.history&&a.history.pushState&&a.history.replaceState&&!/ Mobile\/([1-7][a-z]|(8([abcde]|f(1[0-8]))))/i.test(e.userAgent)&&!/AppleWebKit\/5([0-2]|3[0-2])/i.test(e.userAgent)),hashChange:Boolean(!("onhashchange"in a||"onhashchange"in d)||m.isInternetExplorer()&&m.getInternetExplorerMajorVersion()<8)}

Hack Solution:

m.emulated={pushState:true,hashChange:true}

I'm using the HTML4+HTML5 bundled minified code, but the line corresponds to Line 269 in the history.js uncompressed file. If you are using a different version, the corresponding section is here:

Unminified Original (View on GitHub):

History.emulated = {
pushState: !Boolean(
window.history && window.history.pushState && window.history.replaceState
&& !(
(/ Mobile\/([1-7][a-z]|(8([abcde]|f(1[0-8]))))/i).test(navigator.userAgent) /* disable for versions of iOS before version 4.3 (8F190) */
|| (/AppleWebKit\/5([0-2]|3[0-2])/i).test(navigator.userAgent) /* disable for the mercury iOS browser, or at least older versions of the webkit engine */
)
),
hashChange: Boolean(
!(('onhashchange' in window) || ('onhashchange' in document))
||
(History.isInternetExplorer() && History.getInternetExplorerMajorVersion() < 8)
)
};

Hack Solution:

History.emulated = {
    pushState: true,
    hashChange: true
    };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文