使用 javascript 设置页面加载时的输入值
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的功能不起作用,那是由禁用的
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.