HTML學習筆記4

2021-10-13 01:27:13 字數 2918 閱讀 7093

method

="post"

action

="#"

>

>

使用者名稱:p

>

屬性

解釋type

指定元素的型別,text,password,checkbox, radio,submit,reset,file,hidden,image,button預設為text

name

指定表單元素的名稱

value

元素的初始值,當型別為radio時必須指定乙個

size

指定表單元素的寬度,當型別為text或者password時,表單元素的大小以字元為單位,其它以畫素為單位

maxlength

當type為text或者password時,輸入的最大字元數

checked

當type為radio或者checkbox時,表示按鈕是否被選中

文字框

type

="text"

name

="文字框"

value

="文字"

size

="30"

maxlength

="20"

>

密碼框
type

="password"

name

="密碼"

value

="密碼"

size

="30"

maxlength

="20"

>

單選題
a

type

="radio"

name

="單選"

value

="b"

>

b

核取方塊
type

="checkbox"

name

="複選"

value

="體育"

>

體育type

="checkbox"

name

="複選"

value

="美術"

>

美術>

列表框
name

="列表框"

size

="1"

>

value

="老闆"

selected

="selected"

>

老闆option

>

value

="員工"

>

員工option

>

select

>

按鈕
type

="submit"

name

="提交"

value

="提交"

>

type

="reset"

name

="重置"

value

="重置"

>

type

="button"

name

="按鈕"

value

="按鈕"

>

type

="image"

src="路徑"

>

文字域
name

="文字域"

cols

="n"

rows

="m"

>

文字textarea

>

檔案域
action

="#"

method

="get"

enctype

="multipart/form-data"

>

type

="file"

name

="files"

>

type

="submit"

name

="上傳"

value

="上傳"

>

form

>

郵箱
type

="email"

name

="email"

>

type

="submit"

name

="提交"

>

網頁
type

="url"

name

="網頁"

>

type

="submit"

name

="提交"

>

數字
type

="number"

name

="數字"

min="1"

max="10"

step

="1"

>

滑塊
type

="range"

name

="滑塊"

min="0"

max="10"

step

="1"

>

搜尋
type

="search"

name

="搜尋"

>

Html學習筆記4

1 標籤 2.超連結target屬性 3.超連結 有兩種鏈結方式 一種是內部鏈結,另一種是外部鏈結。內部鏈結指的是超連結的鏈結物件是在同乙個 中的資源。與自身 頁面有關的鏈結被稱為內部鏈結。超連結a標籤 的例子就是外部鏈結,這個超連結的鏈結物件是外部 而內部鏈結的鏈結物件是 的其他頁面或當期頁面。超...

HTML學習筆記 4

1.列表 無序表 無序表始於標籤,每個列表始於 有序表 有序表始於標籤,每個列表始於 定義列表 定義列表始於標籤,每個自定義列表項始於,每個列表項的定義始於 2.大多數html元素被定義為塊級元素與內聯元素 塊級元素在瀏覽器顯示時常常會以新行為開始 或結束 內聯元素在顯示時通常不會以新行為開始 3....

html學習筆記4

5.2 的布局 布局 是乙個頁面的整體結構,結構特點 從上往下,從左往右,一般每一行高度是一致的 width 100 colspan 3 style height 120px background color red style height 400px background color green...