疯狂的问题在这里。
我的网页加载时:<body onload="getClientDateTime();">
它运行此功能:document.getElementById('ClientDateTime').value="hello world";
理论上应该将“hello world”插入隐藏字段:<INPUT TYPE="hidden" name="ClientDateTime" id="ClientDateTime" value="">
但她没有工作。
如果我将字段更改为键入“text”,那么它的工作方式应该如此,但不能作为“隐藏”。请帮忙!
答案 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>