通过 onclick 更改项目值不起作用

发布于 2024-10-12 22:23:13 字数 360 浏览 1 评论 0原文

谁能告诉我为什么下面的代码不起作用?

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放肆 2024-10-19 22:23:13

nameid 是不同的属性。您的输入未定义 id

name and id are different attributes. Your input doesn't have an id defined.

若相惜即相离 2024-10-19 22:23:13

name 属性为“way”的元素也需要一个 id 属性。

<input type="hidden" name="way" mode="way" id="way" value="" />

The element with the name property of "way" also needs an id property.

<input type="hidden" name="way" mode="way" id="way" value="" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文