formaction 属性规定当提交表单时,向何处发送表单数据。
1.formaction 属性规定当表单提交时处理输入控件的文件的 URL。
2.formaction 属性覆盖 元素的 action 属性。
注释:formaction 属性适用于 type="submit" 和 type="image"。
提交到http://localhost:8080/index01/Test01.jsp 提交到http://localhost:8080/index01/Test02.jsp 提交到http://localhost:8080/index01/Test03.jsp
2.HTML 5 formmethod 属性
formmethod 属性覆盖 form 元素的 method 属性。
可以通过以下方式发送 form-data :
以 URL 变量 (使用 method="get") 的形式来发送
以 HTTP post (使用 method="post") 的形式来发送
该属性与 type="submit" 配合使用。
http://localhost:8080/index01/Test01.jsp http://localhost:8080/index01/Test02.jsp http://localhost:8080/index01/Test03.jsp
和
姓: 名: 提交 使用 POST 来提交
3HTML 5 autofocus 属性
autofocus 属性规定当页面加载时 input 元素应该自动获得焦点。
如果使用该属性,则 input 元素会获得焦点。
本文讲解了HTML5 form新增的属性 ,更多相关内勤请关注。