如何发送“文本框”的值即使它在 HTML 中变灰/禁用?

发布于 2024-10-15 04:54:24 字数 405 浏览 2 评论 0原文

我在java脚本中这样做:

document.getElementById(XYZ).value = '32768';
document.getElementById(ABC).value = '32768 ';  
document.getElementById(XYZ).disabled = true;
document.getElementById(ABC).disabled = true;

当我按下提交时,它给出“0”作为值。 但我想检索以上值。

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

readOnly 是一个选项,但它会将字体颜色从灰色更改为灰色变黑, 但我想要只读文本框中的灰色文本

任何帮助!!!!

谢谢!

I m doing like this in java script :

document.getElementById(XYZ).value = '32768';
document.getElementById(ABC).value = '32768 ';  
document.getElementById(XYZ).disabled = true;
document.getElementById(ABC).disabled = true;

when i m pressing submit it gives "0" as value.
BUT i want to retrieve above values.

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

readOnly is an option but it changes the FONT COLOUR from gray to black,
but i want gray colored text in readOnly textbox

any help!!!!

thanx !!!

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

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

发布评论

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

评论(2

捶死心动 2024-10-22 04:54:24

禁用某个元素会将其从表单中删除。该值将不会被传输。

唯一的解决方案是不禁用该元素。取决于您想要执行的操作,例如 readonly 财产 可能适合你。

Disabling an element takes it out of the form. The value will not be transmitted.

The only solution is not disabling the element. Depending on what you want to do, for example the readonly property could work for you.

寄意 2024-10-22 04:54:24

我可能会使用 readonly 属性和一些CSS 样式 根据需要将它们灰显。

I'd probably use readonly attribute and some CSS styles to gray them out like you want.

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