1.HTML 5 Formaction-Attribut
Definition und Verwendung
Das Formaction-Attribut gibt an, wohin beim Senden eines Formulars zu gehen ist Formular. Formulardaten senden.
Hinweis:
1. Das formaction-Attribut gibt die URL der Datei an, die die Eingabesteuerung beim Absenden des Formulars übernimmt.
2. Das Attribut „formaction“ überschreibt das Attribut „action“ des Elements
Hinweis: Das Attribut formaction funktioniert mit type="submit" und type="image".
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>formaction</title>
</head>
<body>
<form id="testform">
<input type="submit" name="s1" value="v1" formaction="http://localhost:8080/index01/Test01.jsp">提交到http://localhost:8080/index01/Test01.jsp
<input type="submit" name="s2" value="v2" formaction="http://localhost:8080/index01/Test02.jsp">提交到http://localhost:8080/index01/Test02.jsp
<input type="submit" name="s3" value="v3" formaction="http://localhost:8080/index01/Test03.jsp">提交到http://localhost:8080/index01/Test03.jsp
</form>
</body>
</html> Nach dem Login kopieren
2.HTML 5 定义和用法 formmethod 属性覆盖 form 元素的 method 属性。
可以通过以下方式发送 form-data :
该属性与 type="submit" 配合使用。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form id="testform">
<input type="submit" name="s1" value="v1" formmethod="post" formaction="http://localhost:8080/index01/Test01.jsp">http://localhost:8080/index01/Test01.jsp
<input type="submit" name="s2" value="v2" formmethod="get" formaction="http://localhost:8080/index01/Test02.jsp">http://localhost:8080/index01/Test02.jsp
<input type="submit" name="s1" value="v1" formmethod="post" formaction="http://localhost:8080/index01/Test03.jsp">http://localhost:8080/index01/Test03.jsp
</form>
</body>
</html> Nach dem Login kopieren
和
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/demo_form.asp" method="get">
姓:<input type="text" name="lname" /><br />
名:<input type="text" name="fname" /><br />
<button type="submit" >提交</button>
<button type="submit" formmethod="post" formaction="/example/html5/demo_post.asp">使用 POST 来提交</button>
</form>
</body>
</html> Nach dem Login kopieren
3HTML 5 autofocus 属性
定义和用法 autofocus 属性规定当页面加载时 input 元素应该自动获得焦点。
如果使用该属性,则 input 元素会获得焦点。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form>
<input type="text">
<input type="text" autofocus>
</form>
</body>
</html> Nach dem Login kopieren
本文讲解了HTML5 form新增的属性 ,更多相关内勤请关注php中文网。
相关推荐:
JQuery中DOM操作——wrap
django 使用 request 获取浏览器发送的参数
React this绑定的几点思考
Das obige ist der detaillierte Inhalt vonNeue Attribute des HTML5-Formulars. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!