ajax – 哪一个更好的pushstate或location.hash?

前端之家收集整理的这篇文章主要介绍了ajax – 哪一个更好的pushstate或location.hash?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
window.location.hash vs HTML5 history.pushstate。哪一个会更好地满足与ajax请求的url,为什么?
谢谢。
location.hashhistory.pushState方法有更好的支持
pushState方法的优点是您可以将状态绑定到历史记录条目。
如果您不需要此状态对象,我建议使用location.hash属性,以更好地兼容旧版浏览器。
location.hash = 'new-hash';
console.log(history.state); // null or undefined

history.pushState({extraData: "some state info"},'','new-hash'); //<---
console.log(history.state); // [object Object] = {"extraData": "some state info"}
原文链接:https://www.f2er.com/ajax/160289.html

猜你在找的Ajax相关文章