使用 javascript 设置页面加载时的输入值

发布于 2025-01-08 08:20:12 字数 534 浏览 2 评论 0原文

我想使用 JavaScript 更新隐藏字段的值,我不明白为什么我的代码不起作用。

<form id="install" action="" method="post">
<input id="idposte" type="hidden" value="">
</form>

<script type="text/javascript">
var wshnetwork=new ActiveXObject("wscript.network");
var identifiant=wshnetwork.computername;
document.getElementById('idposte').value=identifiant;
</script>

我认为 document.getElementById('idposte').value=identifiant; 未执行。我使用的是 IE8,此代码适用于 Intranet 网站(这就是我需要计算机名称的原因)。

非常感谢。

I want to update the value of an hidden field using javascript, I don't understand why my code doesn't work.

<form id="install" action="" method="post">
<input id="idposte" type="hidden" value="">
</form>

<script type="text/javascript">
var wshnetwork=new ActiveXObject("wscript.network");
var identifiant=wshnetwork.computername;
document.getElementById('idposte').value=identifiant;
</script>

I think document.getElementById('idposte').value=identifiant;is not executed. I'm using IE8, this code is for an Intranet website (this is why I need the computer name).

Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少钕鈤記 2025-01-15 08:20:12

如果您的功能不起作用,那是由禁用的 ActiveX 控件引起的。

如果您没有在服务器端接收数据,那是因为您尚未将 name 属性附加到 元素。

If your function does not work, that's caused by disabled ActiveX controls.

If you're not receiving the data at the server's side, that's because you haven't attached a name attribute to your <input> element.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文