无法获取文本框的背景颜色

发布于 2024-12-08 18:35:20 字数 295 浏览 0 评论 0原文

我正在使用此处的解码[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 技术交流群。

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

发布评论

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

评论(2

甜心 2024-12-15 18:35:20

当您在服务器端检索此颜色时,可以做一件事,您可以在隐藏字段中设置此颜色值,然后可以从服务器端获取隐藏字段值,该值与文本框的背景颜色相同。

希望这会有所帮助。

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.

一枫情书 2024-12-15 18:35:20

没有这样的属性方法来反映在DOM(客户端)上所做的更改。尝试在服务器端更改BackColor

There isn't such a property or method that reflect changes made on DOM (client side). Try to change BackColor at server side.

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