在 CSS onChange 上附加数组值

发布于 2024-12-04 17:50:25 字数 399 浏览 0 评论 0原文

我有一个应用程序,当从表单下拉列表中选择配色方案时,与该配色方案关联的十六进制值会填充每个字段的数组值中的特定文本字段(这部分有效)。我无法让应用程序做的是更改文本字段的背景颜色以匹配该特定值。

我有一个小提琴: http://jsfiddle.net/z4WxP/7/

我已经尝试过(添加一个类并执行 css 附加以填充值的多种变体都无济于事,如下所示:

document.getElementsByName('color_body_bg')[0].value = bodyBG[text].css('background-color',value = bodyBG[text]);

I have an app that, when a color scheme is selected from a form dropdown, the hexidecimal values associated to that color scheme populate specific text fields from each field's array value (this part works). What I cannot get the app to do is change the background color of the text field to match that particular value.

I have a fiddle: http://jsfiddle.net/z4WxP/7/

I've tried (multiple variations of) adding a class and doing a css append to populate with the value to no avail, like so:

document.getElementsByName('color_body_bg')[0].value = bodyBG[text].css('background-color',value = bodyBG[text]);

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

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

发布评论

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

评论(2

绅刃 2024-12-11 17:50:25
  document.getElementsByName('color_body_bg')[0].style.backgroundColor = bodyBG[text];

这是它的基本代码

http://jsfiddle.net/XqCQJ/

  document.getElementsByName('color_body_bg')[0].style.backgroundColor = bodyBG[text];

that's the basic code for it

http://jsfiddle.net/XqCQJ/

怀中猫帐中妖 2024-12-11 17:50:25

将其添加到 displayColor() 的末尾

  $('.appendSelection').each( function (){
      $(this).css('backgroundColor', $(this).val());
  });

Add this to then end of displayColor()

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