如何使用 javascript 而不是 HTML 5 设置表单按钮的范围
因此,在 HTML 5 中,您可以使用 form
属性将表单外部的按钮设置为指向该表单。有没有办法在 JavaScript 中做到这一点?我需要对 this.form
的所有引用都指向页面上其他位置的表单。我已经尝试过:
<input type="button" onclick="this.form = document.forms['MyForm']; this.form.name.value = 'Blah' />
但没有成功。有办法做到这一点吗?
So in HTML 5, you can set buttons outside of a form to point to that form by using the form
attribute. Is there a way to do this in Javascript? I need all references to this.form
to point to a form somewhere else on the page. I've already tried:
<input type="button" onclick="this.form = document.forms['MyForm']; this.form.name.value = 'Blah' />
But with no success. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
每个表单元素都应该有一个唯一的 ID,因此您可以在不引用表单的情况下更改元素的值,如下所示:
要提交表单,请使用 document.forms:
Each of your form elements should have a unique ID, so you can change the value of the element without referencing the form, like this:
To submit the form, use document.forms:
使用 jquery 做这样的事情怎么样?
What about something like this using jquery?