如何更改 jQuery Mobile 中选择框中选定值的颜色?
我需要知道如何更改 iPad 中 jQuery Mobile 中选择框的选定值颜色?目前,在原生 Safari 浏览器中是可以的。当我在 iPad Safari 浏览器中渲染它时,它不起作用。
请检查下图。我想在选择时将不同的颜色更改为“粉红身份证”而不是白色。
I need to know how to change the selected value colori n select box in jQuery Mobile in iPad? Currently, it's ok in native Safari browser. When I render it in iPad Safari browser, it doesn't work.
Please check the following Image. I want to change different color to "Pink NRIC" when selected instead of white color.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在我知道如何更改 jQueryMobile 中选定组合的颜色。这是解决方案。
第一部分是我需要为样式表中的活动选择框添加新的类名称。
之后,我需要在 jQueryMobile javascript 文件中声明上述类名。
我们需要在 "activeBtnClass: "ui-btn-active"," 之后添加以下代码。
最后一部分是我们需要更改第 3491 行中的现有代码。
更改 iPad 中的 jQueryMobile 选择框活动样式颜色野生动物园
Now I know how to change the color of selected combo in jQueryMobile. Here is the solution.
The first part is I need to add new class name for active select box in stylesheet.
After that, I need to declare above class name in jQueryMobile javascript file.
We need to add following coding after this "activeBtnClass: "ui-btn-active","
Final part is we need to change existing coding in line 3491.
Change jQueryMobile Select Box active style color in iPad safari