gpt4 book ai didi

javascript - 使用 document.getElementsByName() 不起作用?

转载 作者:数据小太阳 更新时间:2023-10-29 04:02:06 25 4
gpt4 key购买 nike

第二个警报命令的代码按预期工作(显示元素“to”的值,但第一个警报命令不起作用(它应该做同样的事情)。这是为什么?

<html>
<head>
<script type="text/javascript">
function getValue()
  {
  alert(document.getElementsByName("to").value);
alert(document.forms[0].to.value);  
  }
</script>
</head>
<body>
<form>
<input name="to" type="hidden" value="hoolah" />
<input type="button" onclick="getValue()" value="Get Value!" />
<form/>
</body>
</html>

最佳答案

getElementsByName 返回一个 HTMLCollection。您可以像这样访问第一项的值:

document.getElementsByName("to").item(0).value

或者像这样:

document.getElementsByName("to")[0].value

更多信息:

关于javascript - 使用 document.getElementsByName() 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8845886/

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