这里令人抓狂的问题。

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

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

理论上应该在隐藏字段中插入“ hello world”:<INPUT TYPE="hidden" name="ClientDateTime" id="ClientDateTime" 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>

08-19 03:01