jQuery / JavaScript:从 更改 URL 哈希值标签或表单提交
是否有可能以某种方式影响 标记中 URL 的哈希值?
我需要在不刷新页面的情况下启动搜索,但还想更改 URL 哈希,例如:当我输入 hello world< 时:
search.html#query=hello%20world
/code> 特别是 并按 Enter(或提交)。
UPD:我有一个 AJAX 搜索,但我想保持历史记录后退和前进按钮正常工作。
因此,每次用户搜索某些内容时,我希望他留在同一页面,通过 AJAX 加载搜索结果并更改页面的 URL 哈希以启用历史记录按钮。
is it possible to somehow affect the hash of the URL from the <input>
tag?
I need to initiate a search without a page refresh, but also want to change the URL hash, for example: search.html#query=hello%20world
, when I have typed hello world
in particular <input>
and hit Enter (or submit).
UPD: I have an AJAX search, but I want to keep the history back and forward buttons working.
So, each time the user searches something, I want him to stay at the same page, load search results via AJAX and change the page's URL hash to enable the history buttons.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的。
在 jsFiddle 上查看。
Yes.
See it on jsFiddle.
使用 window.location.hash 属性获取和设置哈希值。
Use
window.location.hash
property to get and set the hash.由于您是异步执行此操作,因此我无法确切地告诉您如何执行此操作,但我假设您有某种搜索功能,您可以在其中获取
input
的值并执行搜索:Since you're doing this asynchronously, I can't tell you exactly how to do it, but I'll assume you have some sort of search function in which you get the value of the
input
and perform the search: