gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 20:44:24 26 4
gpt4 key购买 nike

这里有令人抓狂的问题。

当我的页面加载时:<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>

关于javascript - Javascript 未向隐藏字段输入值的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1639484/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com