Javascript 使用 getElementsByName 更改文本值
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/11851682/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-24 07:23:25 来源:igfitidea点击:
change value of text using getElementsByName
提问by URL87
I have firstName
text that I want to change his value but it not work -
我有firstName
文字想改变他的价值,但它不起作用 -
<input type="text" name="firstName" />
<script LANGUAGE="JavaScript" TYPE="text/javascript">
document.getElementsByName("firstName").[0].value = "New Value " ;
</script>
How can I change this value ?
我怎样才能改变这个值?
回答by Matt Ball
That's not syntactically valid JS.Remove the extra .
:
这在语法上不是有效的 JS。删除额外的.
:
// ↓↓
document.getElementsByName("firstName")[0].value = "New Value " ;
// ↑↑
and the rest will work.
而其余的将工作。