HTML學習筆記 post表單

2021-09-09 01:28:57 字數 4555 閱讀 9978

>無標題文件

>**使用者個人資料調查

title

>

head

>

<

body

>

<

form

action

="post.php"

method

='post'

>

<

input

type

="hidden"

/>

您當前的位置:

<

input

type

="text"

value

disabled

='disabled'

/>

<

br /><

br />

<

label

for='uname'

>使用者名稱:

label

><

input

id='uname'

type

="text"

size

='50'

maxlength

='10'

name

='uname'

value

='張三'

/>

<

br /><

br />

密碼:<

input

type

="password"

name

='pwd'

/>

<

br /><

br />

性別:男

<

input

type

="radio"

name

='***'

value

='1'

checked

='checked'

/> 女<

input

type

="radio"

name

='***'

value

='0'

/>

<

br /><

br />

愛好:籃球

<

input

type

="checkbox"

name

="hobby"

value

='lanqiu'

/>

排球<

input

type

="checkbox"

name

="hobby"

value

='paiqiu'

/>

足球<

input

type

="checkbox"

name

="hobby"

value

='zuqiu'

/>

桌球<

input

type

="checkbox"

name

="hobby"

value

='pinbgpangqiu'

/>

<

br /><

br />

來這裡的目的:

<

select

name

="target"

size

='2'

multiple

='multiple'

>

<

option

value

="first"

>第一

option

>

<

option

value

="second"

selected

='selected'

>第二

option

>

<

option

value

="third"

>第三

option

>

<

option

value

="forth"

>第四

option

>

select

>

<

br /><

br />

個人介紹:

<

textarea

name

="jieshao"

rows

='10'

cols

='40'

>

textarea

>

<

br /><

br />

個人**

<

input

type

="file"

/>

<

br /><

br />

<

input

type

="submit"

value

="更新資料"

/>

<

input

type

="reset"

value

="重置"

/>

<

input

type

="button"

value

="按鈕"

/>

<

br /><

br />

form

>

body

>

html

>

HTML學習筆記 html表單(form)

html表單功能 html表單用於蒐集不同型別的使用者輸入,表單由不同型別的標籤組成。標籤及屬性用法如下 定義整體的表單區域 屬性功能 action 定義表單資料提交位址 method屬性 定義表單提交的方式,一般有 get 方式和 post 方式 標籤中內部子標籤及屬性用法如下 label 標籤 ...

html學習筆記(表單標籤)

input標籤有乙個type屬性,這個屬性有很多態別的取值,取值的不同就決定了input標籤的的功能和外觀。賬號 密碼 單選框 男 女checked checked 表示預設選了女 name要相同,用單選按鈕時才會起到單選的作用 type checkbox name 技術 value html ht...

HTML 表單(form) 學習筆記

一 表單語法 建立表單 屬性 input 標籤 input元素 語法格式 type屬性的可選值有 1.text 文字域 屬性 name 文字框名稱 value 文字框的初始值 size 文字框的長度 maxlength 可輸入字串最大的長度 2.password 密碼域 屬性與文字框的屬性完全相同 ...