Javascript 未向隐藏字段输入值的问题

发布于 2024-08-09 09:50:29 字数 348 浏览 5 评论 0原文

这里有令人抓狂的问题。

当我的页面加载时:

它运行此函数: 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 技术交流群。

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

发布评论

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

评论(1

戒ㄋ 2024-08-16 09:50:29

这实际上是有效的,因为它会提醒正确的值:

<html>
<head>
    <title>Test</title>
</head>
<body onload="document.getElementById('ClientDateTime').value='hello world'; alert(document.getElementById('ClientDateTime').value);">

<input type="hidden" name="ClientDateTime" id="ClientDateTime" value="" />

</body>
</html>

This actually works as it alerts the correct value:

<html>
<head>
    <title>Test</title>
</head>
<body onload="document.getElementById('ClientDateTime').value='hello world'; alert(document.getElementById('ClientDateTime').value);">

<input type="hidden" name="ClientDateTime" id="ClientDateTime" value="" />

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