gpt4 book ai didi

javascript - 如何查找浏览器是否支持 History.Pushstate?

转载 作者:IT王子 更新时间:2023-10-29 03:06:05 24 4
gpt4 key购买 nike

我想在不重新加载页面的情况下更改 URL。我找到的可能的解决方案是

window.history.pushState('page2', 'Title', '/page2.php');

但有些浏览器如Firefox 3.5、IE6+不支持,所以解决方案是

var uri = window.location.href;

但问题是如何发现浏览器是否支持 history.pushstate?

TRY CATCH 是可能的解决方案还是其他任何东西。

最佳答案

if (history.pushState) {
// supported.
}

最快的测试是在浏览器控制台中运行它以查看它是否受支持:

if (history.pushState) { alert('supported'); }

另请注意,在 FF 中 typeof(history.pushState) 返回“function”,而在 IE 中返回“undefined”

关于javascript - 如何查找浏览器是否支持 History.Pushstate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6824991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com