jQuery Mobile 和“查询参数”用于 hashbang 导航
我正在使用 jQuery Mobile,并且一个 HTML 页面中有几页。当打开这些页面时,我想为它们传递参数,以便它们的参数持久化在URL中。
例如,
<a href="#map?x=4&y=2"
它会打开,我可以在 beforeshow 事件中访问参数 X 和 Y。
这可能吗?如何实现?您建议使用 hashbangs 编码参数的替代方法是什么?
I am using jQuery Mobile and have few pages in one HTML page. When opening these pages, I'd like to pass parameters for them, so that their parameters are persistent in URL.
E.g.
<a href="#map?x=4&y=2"
It would open and I could access parameters X and Y in beforeshow event.
Is this possible and how? What alternative means you suggest for encoding parameters with hashbangs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议您不要使用哈希“参数”,因为当前对它的支持有问题。
我会拦截所有链接上的点击并查找特定的数据元素,例如 data-params:
在您的 HTML 中,您可以转到
在这种情况下,您将创建一个名为 params 的全局变量,您应该能够从所有代码中以统一的方式访问它。
不过,您必须自己解析这些参数,但这并不难,可以使用如下内容:
I would suggest you don't use hash 'parameters', since current support for it is buggy.
I would intercept the clicks on all links and look for a specific data- element, say, data-params:
And in your HTML you can go
In this case you are creating a global variable, called params, which you should be able to access in a uniform manner from all your code.
You will have to parse those parameters yourself though, however that's not hard, could use something like this:
是的,您可以拥有像您所展示的那样的链接:
然后,在演出之前,您可以使用以下代码读取此参数:
QueryStringToHash
的定义(来自 此处)如下:希望这会有所帮助。干杯
Yes, you can have links like the one you showed:
Then, on before show you can read this params with this code:
The definition of the
QueryStringToHash
(got from here) is the following:Hope this helps. Cheers
您查看过 jQuery 移动常见问题解答吗? -> http://jquerymobile.com/test/docs/faq /pass-query-params-to-page.php
我目前正在使用:https://github.com/azicchetti/jquerymobile-router
Have you checked out the jQuery mobile FAQ? -> http://jquerymobile.com/test/docs/faq/pass-query-params-to-page.php
I'm currently using: https://github.com/azicchetti/jquerymobile-router