Javascript 未向隐藏字段输入值的问题
这里有令人抓狂的问题。
当我的页面加载时:
它运行此函数: document.getElementById('ClientDateTime').value="hello world";< /code>
理论上应该将“hello world”插入隐藏字段:
但她没有工作繁忙。
如果我将字段更改为键入“文本”,那么它会像它应该的那样工作,但不会作为“隐藏”。请帮忙!
Maddening problem here.
When my page loads: <body onload="getClientDateTime();">
It runs this function: document.getElementById('ClientDateTime').value="hello world";
Which theoretically should insert "hello world" into a hidden field: <INPUT TYPE="hidden" name="ClientDateTime" id="ClientDateTime" value="">
But she no worky.
If I change the field to type "text" then it works like it should but not as a "hidden". Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上是有效的,因为它会提醒正确的值:
This actually works as it alerts the correct value: