JQueryMobile:标题中的下拉菜单
我正在创建一个 JQM Web 应用程序,需要向标题添加下拉菜单以达到以下效果
----------------------------------
[Menu1] Page Title [Menu2]
----------------------------------
有 JQM 下拉小部件的示例吗?
I am creating a JQM webapp and need to add dropdown menu to the header to achieve the following effect
----------------------------------
[Menu1] Page Title [Menu2]
----------------------------------
Any examples of dropdown widgets for JQM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是一个 jsFiddle ,其中包含我为此编写的代码。
Here's a jsFiddle with the code I wrote for this.
在 JQuery Mobile 1.3 中,有一个针对此问题的内置示例。
http://view.jquerymobile.com/1.3.0/docs/widgets/弹出窗口/
In JQuery Mobile 1.3 there is a built in sample for this problem.
http://view.jquerymobile.com/1.3.0/docs/widgets/popup/
请参阅此 jsFiddle 以获取基于 jQuery Mobile 内置选择菜单的示例。我过去不得不做这样的事情......它远非完美,可能无法在所有设备上正确渲染,但在我的情况下它工作正常。
See this jsFiddle for a sample based on jQuery Mobile's built-in select menus. I've had to do something like this in the past... it's far from perfect and likely wont render correctly on all devices, but it worked OK in my case.
jQuery Mobile 1.2 文档给出了一个使用弹出窗口小部件从按钮而不是选择创建菜单的示例:
http://jquerymobile.com/branches/popup-widget/docs/pages/popup/index.html
The jQuery Mobile 1.2 docs give an example of using the popup widget for creating a menu from a button rather than a select:
http://jquerymobile.com/branches/popup-widget/docs/pages/popup/index.html
您应该在标题栏中设置导航栏网格菜单,例如使用 5 个按钮,然后为每个导航栏按钮设置一个带有下拉转换的弹出菜单。
You should set navbar grid menu with for example 5 buttons in header bar and then set for each of navbar buttons one popup menu with dropdown transation.