Après avoir suivi, vous pouvez suivre ses informations dynamiques en temps opportun
Cours dans la section correspondante:Introduction aux formulaires dans le didacticiel de base HTML
<form method="提交方式post或者get" action="表單提交地址"> 表單元素:文本框,文本域,按鈕,下拉框,多選框,單選框等 </form>
2016-11-250個贊
Cours dans la section correspondante:Toile HTML 5
canvas 元素本身是沒有繪圖能力的。所有的繪制工作必須在 JavaScript 內部完成
2016-11-250個贊
Cours dans la section correspondante:Formats de texte courants HTML
<b> 定義粗體文本。 <big> 定義大號字。 <em> 定義著重文字。 <i> 定義斜體字。 <small> 定義小號字。 <strong> 定義加重語氣。 <sub> 定義下標字。 <sup> 定義上標字。 <ins> 定義插入字。 <del> 定義刪除字。
2016-11-250個贊
name:給表單起個名字。這個名字主要給JavaScript來用。JS主要用來做客戶端表單驗證。 method:表單的提交方式,取值:get或post。 action:指定表單的處理程序,一般是PHP文件。
2016-11-250個贊
Cours dans la section correspondante:Tutoriel HTML de base, méthode GET et méthode POST
GET方式不能提交敏感數(shù)據(jù),如:密碼。 GET方式只提交少量數(shù)據(jù)。因為地址欄的長度有限制,大約100外字符。 GET方式下不能上傳附件。
2016-11-250個贊
Cours dans la section correspondante:SVG en ligne HTML5
SVG 指可伸縮矢量圖形 (Scalable Vector Graphics) SVG 用于定義用于網(wǎng)絡的基于矢量的圖形 SVG 使用 XML 格式定義圖形 SVG 圖像在放大或改變尺寸的情況下其圖形質量不會有損失 SVG 是萬維網(wǎng)聯(lián)盟的標準
2016-11-250個贊
<form name="user" method="get" action="" > <table> <tr> <td>用戶名:</td> <td><input type="text" name="username"/></td> </tr> <tr> <td>密碼:</td> <td><input type="password" name="userpwd"/></td> </tr> <tr> <td colspan="2" align="left"><input type="submit" value="提交信息"/></td> </tr> </table> </form>
2016-11-250個贊
Cours dans la section correspondante:HTML5 MathML
mathbackground 背景色。您可以使用#rgb,#rrggbb而HTML顏色的名稱。 mathcolor 文本顏色。您可以使用#rgb,#rrggbb而HTML顏色的名稱。
2016-11-250個贊
文本框<input type = “text” 屬性 = “值” /> 密碼框<input type = “password” 屬性 = “值” />
2016-11-250個贊
Cours dans la section correspondante:Code informatique HTML
<samp> 元素定義計算機輸出 <code> 元素不保留多余的空格和折行
2016-11-250個贊
單選按鈕 <input type = “radio” 屬性 = “值” /> 多選框 <input type = “radio” 屬性 = “值” />
2016-11-250個贊
Cours dans la section correspondante:Tutoriel HTML de base?: liste déroulante dans le formulaire
<select>標記的屬性,只有一個name屬性 <option>標記的屬性有兩個:value屬性、selected屬性
2016-11-250個贊
Cours dans la section correspondante:Zone de texte du formulaire de didacticiel de base HTML
文本域 <textarea name = “名稱” cols = “寬度” rows = “高度”></textarea>
2016-11-250個贊
Cours dans la section correspondante:Tutoriel de base HTML?:?Remplir les boutons du formulaire
提交按鈕:<input type="submit" value="提交表單" /> 重置按鈕:<input type="reset" value="重新填寫" /> 圖片按鈕:<input type="image" src="images/btn02.png" /> //功能就是提交表單,與submit按鈕功能一樣 普通按鈕:<input type="button" onclick="javascript:window.close()" value="關閉窗口" />
2016-11-250個贊
Cours dans la section correspondante:Champs cachés du formulaire HTML de base
隱藏域 <input type = “hidden” name = “名稱” value = “默認值” />
2016-11-250個贊