如何使用 javascript 突出显示 HTML 选择中的某些选项
我看到这篇文章:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的!我想通了。
Yes! I figured it out.