在 CSS onChange 上附加数组值
我有一个应用程序,当从表单下拉列表中选择配色方案时,与该配色方案关联的十六进制值会填充每个字段的数组值中的特定文本字段(这部分有效)。我无法让应用程序做的是更改文本字段的背景颜色以匹配该特定值。
我有一个小提琴: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是它的基本代码
http://jsfiddle.net/XqCQJ/
that's the basic code for it
http://jsfiddle.net/XqCQJ/
将其添加到
displayColor()
的末尾Add this to then end of
displayColor()