通过 onclick 更改项目值不起作用
谁能告诉我为什么下面的代码不起作用?
<input type="hidden" name="way" mode="way" value="" />
<input type="button" name="finish" value="Update & Finish" onclick="document.getElementById('way').value='continue'; document.edit_list.submit();" />
我收到错误:
Error: document.getElementById("way") is null
Could anyone tell me why the below code isn't working?
<input type="hidden" name="way" mode="way" value="" />
<input type="button" name="finish" value="Update & Finish" onclick="document.getElementById('way').value='continue'; document.edit_list.submit();" />
I get the error:
Error: document.getElementById("way") is null
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
name
和id
是不同的属性。您的输入未定义id
。name
andid
are different attributes. Your input doesn't have anid
defined.name 属性为“way”的元素也需要一个 id 属性。
The element with the name property of "way" also needs an id property.