Submit form using a button outside the lt;formgt; tag(使用 lt;formgt; 之外的按钮提交表单标签)
问题描述
说我有:
<form method="get" action="something.php">
<input type="text" name="name" />
</form>
<input type="submit" />
如何在表单之外使用提交按钮提交该表单,我认为在 HTML5 中有一个用于提交的操作属性,但我不确定这是否完全跨浏览器,如果不是有什么办法吗?
How do I go about submitting that form with that submit button outside of the form, I think in HTML5 theres an action attribute for the submit but I'm not sure if thats fully cross-browser and if it isn't is there anyway to do this?
推荐答案
更新:在现代浏览器中,您可以使用 form
属性来做到这一点.
Update: In modern browsers you can use the form
attribute to do this.
据我所知,如果没有 javascript,您将无法做到这一点.
As far as I know, you cannot do this without javascript.
这就是规范所说的
用于创建控件的元素通常出现在 FORM 中元素,但也可能出现在 FORM 元素声明之外当它们用于构建用户界面时.这在关于内在事件的部分.请注意,表单外的控件不能成为成功的控制者.
The elements used to create controls generally appear inside a FORM element, but may also appear outside of a FORM element declaration when they are used to build user interfaces. This is discussed in the section on intrinsic events. Note that controls outside a form cannot be successful controls.
这是我的大胆
提交
按钮被视为控件.
http://www.w3.org/TR/html4/interact/forms.html#h-17.2.1
来自评论
我有一个多选项卡式设置区域,其中有一个按钮可以更新所有内容,因为根据它的设计,按钮将在表单之外.
I have a multi tabbed settings area with a button to update all, due to the design of it the button would be outside of the form.
为什么不将 input
放在表单中,而是使用 CSS 将其放置在页面的其他位置?
Why not place the input
inside the form, but use CSS to position it elsewhere on the page?
这篇关于使用 <form> 之外的按钮提交表单标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 <form> 之外的按钮提交表单标签
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01