如何使用 javascript 突出显示 HTML 选择中的某些选项

发布于 2024-09-30 00:24:20 字数 351 浏览 5 评论 0原文

我看到这篇文章:

How can Ihighlight certain options in a HTML select using jQuery

这与我需要做的类似,除了对于我的理解来说有点太复杂了。在 html 正文中,我有一个动态变化的选择表单。用户可以从此表单中选择多个项目,然后单击按钮(“显示”)来运行 JavaScript 函数。该函数已经遍历列表来确定哪些已被选择,并在其他地方使用该信息。

我希望这样当用户单击“显示”时,所选的项目将突出显示(并且每个项目都有特定的颜色)。

你怎么认为?

I saw this post:

How can I highlight certain options in a HTML select using jQuery

which is similar to what I need to do, except a bit too complicated for my understanding. In the html body, I have a dynamically changing select form. The user can select multiple items from this form, and click a button ("Display") to run a javascript function. This function already goes through the list to determine which ones have been selected and uses the information somewhere else.

I would like it so that when the user clicks "Display", the items that were selected will be highlighted (and each with a specific color).

What do you think?

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

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

发布评论

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

评论(1

绅刃 2024-10-07 00:24:20

是的!我想通了。

myList.options[i].style.backgroundColor='yellow';

Yes! I figured it out.

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