0

这里令人抓狂的问题。

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

它运行这个函数:document.getElementById('ClientDateTime').value="hello world";

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

但她没有工作。

如果我将字段更改为键入“文本”,那么它应该像它应该的那样工作,但不是作为“隐藏”。请帮忙!

4

1 回答 1

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>
于 2009-10-28T19:23:23.553 回答