如何更改 jQuery Mobile 中选择框中选定值的颜色?

发布于 2024-11-08 13:06:00 字数 215 浏览 1 评论 0原文

我需要知道如何更改 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.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独自←快乐 2024-11-15 13:06:00

现在我知道如何更改 jQueryMobile 中选定组合的颜色。这是解决方案。

第一部分是我需要为样式表中的活动选择框添加新的类名称。

ui-select-active {color:#0000a0; text-shadow: 0 -1px 1px #ffffff;}

之后,我需要在 jQueryMobile javascript 文件中声明上述类名。

我们需要在 "activeBtnClass: "ui-btn-active"," 之后添加以下代码。

activeSelectClass: "ui-select-active",

最后一部分是我们需要更改第 3491 行中的现有代码。

/* original coding */
button.addClass( $.mobile.activeBtnClass );

/* change to this one */
button.addClass( $.mobile.activeSelectClass );

更改 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.

ui-select-active {color:#0000a0; text-shadow: 0 -1px 1px #ffffff;}

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","

activeSelectClass: "ui-select-active",

Final part is we need to change existing coding in line 3491.

/* original coding */
button.addClass( $.mobile.activeBtnClass );

/* change to this one */
button.addClass( $.mobile.activeSelectClass );

Change jQueryMobile Select Box active style color in iPad safari

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文