当另一个输入被填充时更改一个输入的值?
我正在尝试创建一个 javascript 函数,当另一个输入更改时,它会设置一个输入的值。这是我的 javascript(不起作用):
<script type="text/javascript">
function addvalue(formname)
{
document.formname.elements.description.value = "filgerng";
}
</script>
这是我的两个元素:
<input id="firstfile" type="file" class="fileupload" name="files[]" size=
"80" onchange="addvalue(this.form)" />
<input id="firstdescription" type="text" name="description" size="50"
/>
有什么想法吗?
Im trying to create a javascript function that sets the value of one input, when another one is changed. Heres my javascript (that isnt working):
<script type="text/javascript">
function addvalue(formname)
{
document.formname.elements.description.value = "filgerng";
}
</script>
And here are my two elements:
<input id="firstfile" type="file" class="fileupload" name="files[]" size=
"80" onchange="addvalue(this.form)" />
<input id="firstdescription" type="text" name="description" size="50"
/>
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的函数中存在错误:
实际上,
elements
是一个数组,请使用 :另外,尽量避免
this.form
。并不是每个浏览器都能很好地处理这个问题。你最好使用一个
You have an error in your function at:
Actually,
elements
is an array, use :Plus, try to avoid
this.form
. This is not well handled by every browsers.You'd better use a