无法获取文本框的背景颜色
我正在使用此处的解码[1] 在客户端设置文本框的颜色,
id.style.backgroundColor = decode[1];
其中包含取决于条件的颜色。
我可以在这里设置颜色,但我无法在服务器端识别该颜色。
我应该使用什么属性来检索这种颜色。
TextBox.BackColor
似乎不起作用。
截至目前,我也以相同的方式设置文本,并且我能够在服务器端检索文本,但不能检索颜色。
提前致谢!
I am setting color of a textbox at client side using
id.style.backgroundColor = decode[1];
Here decode[1] contains colors depending on a condition.
I am able to set the color here, but i am not able to identify this color at server side.
What property should i use to retrieve this color.
TextBox.BackColor
doesnot seem to work.
As of now I am setting text also in same way and i am able to retrieve the text at serverside but not color.
Thanks in Advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您在服务器端检索此颜色时,可以做一件事,您可以在隐藏字段中设置此颜色值,然后可以从服务器端获取隐藏字段值,该值与文本框的背景颜色相同。
希望这会有所帮助。
When you retrieve this color at server side do one thing you can set this color value in Hidden field and then can get hidden field value from server side which would be same as background color of text box.
Hope this will help.
没有这样的
属性
或方法
来反映在DOM
(客户端)上所做的更改。尝试在服务器端更改BackColor
。There isn't such a
property
ormethod
that reflect changes made onDOM
(client side). Try to changeBackColor
at server side.