1. form属性:
该属性用于指定表单元素所属的form,
如果元素原来就位于表单内不需要使用该属性指定,
如果不在form内,可使用form属性指定,设定该元素的form=所属表单的id。
例:<form id="myForm"> <input type="text" /></form><input type="text" form="myForm" />
支持该属性的浏览器:safari 5,chrome 10以上,firefox 4以上,其他浏览器未验证。
2. formaction属性
该属性用于指定元素需要提交到的action,
例:<form action="serve.jsp">
<input type="submit" formaction="s1.jsp"/><!--提交到s1-->
<input type="submit" formaction="s2.jsp"/><!--提交到s2-->
<input type="submit" formaction="s3.jsp"/><!--提交到s3-->
</form>
支持该属性的浏览器:safari 5,chrome 10以上,firefox 4以上,Opera10.5以上,IE 10.
3. formmethod属性
该属性用于指定元素的提交方式,
例:<form id="myForm" action="serve.jsp">
<input type="text" formmethod="post"/>
<input type="text" formmethod="get"/>
<input type="text" formmethod="post"/>
</form>
支持该属性的浏览器:safari 5,chrome 10以上,firefox 4以上,Opera10.5以上,IE 10.