Javascript没有在隐藏字段中输入值的问题

时间:2009-10-28 19:18:40

标签: javascript getelementbyid

疯狂的问题在这里。

我的网页加载时:<body onload="getClientDateTime();">

它运行此功能:document.getElementById('ClientDateTime').value="hello world";

理论上应该将“hello world”插入隐藏字段:<INPUT TYPE="hidden" name="ClientDateTime" id="ClientDateTime" value="">

但她没有工作。

如果我将字段更改为键入“text”,那么它的工作方式应该如此,但不能作为“隐藏”。请帮忙!

1 个答案:

答案 0 :(得分:2)

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

<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>