如何发送“文本框”的值即使它在 HTML 中变灰/禁用?
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
禁用某个元素会将其从表单中删除。该值将不会被传输。
唯一的解决方案是不禁用该元素。取决于您想要执行的操作,例如
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.我可能会使用 readonly 属性和一些CSS 样式 根据需要将它们灰显。
I'd probably use readonly attribute and some CSS styles to gray them out like you want.