如何在jquery mobile中动态更改主题?
我正在使用 jQuery Mobile 创建移动 Web 应用程序。
我在每个页面上使用 theme-b
,并且我想为每个页面动态更改为另一个主题。如何动态更改主题?
I am creating a mobile web applications using jQuery Mobile.
I am using theme-b
for every page and I would like to change to another theme dynamically for every page. How can I change the theme dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以定位与特定小部件相关的特定类,重置其类,然后添加您选择的主题类:
http ://jsfiddle.net/VNXb2/1/
这绝不是一个功能齐全的代码片段,当您切换主题并将它们添加到上面的代码时,您将需要找到想要更新的任何其他小部件。您可以使用 FireBug 或其他开发人员控制台轻松找到每个小部件具有哪些类。
更新
当您考虑
data-role="list-divider
元素时,这会变得有点棘手:这是一个演示:http://jsfiddle.net/VNXb2/7/
You can target specific classes that relate to specific widgets, reset their classes, and then add the themed class of your choosing:
http://jsfiddle.net/VNXb2/1/
This is by no means a fully functional code snippet, you will need to find any other widgets that you want updated when you switch the theme and add them to the code above. You can find what classes each widget has easily by using FireBug or another Developer Console.
UPDATE
When you take into account the
data-role="list-divider
elements this gets a little tricky:Here is a demo: http://jsfiddle.net/VNXb2/7/
上面的答案对我帮助很大,我根据自己的需要对其进行了一些修改,因为我正在使用 themeroller 并期望有超过 20 个主题。这是我所做的
现在,当我通过 json 从服务器获取新主题时,我只需使用新主题作为参数来调用此方法。
问候
拉杰什·J
The above answer helped me a lot, I modified it a little for my need, as I am using themeroller and expect to have more than 20 themes. Here is what I have done
Now when I get the new Theme from the server via json I just call this method with the new theme as param.
Regards
Rajesh J
Rajesh 的回答对我帮助很大...但是 Rajesh,您错过了一个重要的课程 ---- 'ui-page-theme-*',所以我修改了您的答案,现在它非常适合 jQuery Mobile 1.4.5(再次)。 ..
Rajesh's answer helped me a lot... But Rajesh, you missed an important class ---- 'ui-page-theme-*', so I modified your answer and now it's perfect for jQuery Mobile 1.4.5 (again)...