1、表單:表單是乙個包含表單元素的區域,表單元素是允許使用者在表單中輸入資訊的元素,表單用標籤定義。
12<
form
>
3first name:
4form
>
2、輸入標籤,輸入型別是由型別屬性(type)定義的,型別有文字域、單選按鈕等。
3、文字域(輸入文字)
12<
form
>
3姓名:
4<
input
type
="text"
name
="namebox"
/>
5<
br/>67
<
input
type
="text"
name
="addressbox"/
>
8form
>
4、單選按鈕(多選一)
12<
form
>
3<
input
type
="radio"
name
="gender"
value
="男"
/>男4
<
br/>
5<
input
type
="radio"
name
="gender"
value
="女"
/>女6
form
>
5、核取方塊(可以多選)
12<
form
>
3你喜歡哪些水果?
4<
br/>
5<
input
type
="checkbox"
name
>蘋果6
<
br/>
7<
input
type
="checkbox"
name
="banana"
/>香蕉8
<
br/>
9<
input
type
="checkbox"
name
="orange"
/>
桔子10
form
>
6、動作屬性和確認按鈕
使用者點選確認按鈕時,表單的內容會被傳送到另乙個檔案。
12<
form
name
="input"
action
="html_form_action.asp"
method
="get"
>3姓名
4<
input
type
="text"
name
="user"
/>
5<
input
type
="submit"
value
="提交"
/>
6form
>
7、下拉列表
12<
form
>
3<
select
name
="fruit"
>
4<
option
value
>蘋果
option
>
5<
option
value
="banana"
>香蕉
option
>
6<
option
value
="orange"
>桔子
option
>
7<
option
value
="grape"
selected
="selected"
>葡萄
option
>
8select
>
9form
>
8、按鈕
12<
form
>
3<
input
type
="button"
value
="確認"
/>
4<
br/>
5<
input
type
="button"
value
="取消"
/>
6form
>
學習筆記08
2017年9月27日 學習筆記與總結 1.定位方式 相對定位 position relative 1 相對於自己原來的位置進行定位 2 如果是僅僅新增了相對定位的樣式,position relative 顯示效果不發生變化 3 使用定位讓元素發生偏移的 可以使用z index來調整顯示順序 最大值為...
Python學習筆記08
nudge 1 wink 2 a,b nudge,wink a,b 1,2 c,d nudge,wink c,d 1,2 nudge 1 wink 2 a,b,c 1,2,3 a,c 1,3 a,b,c abc a,c a c 高階序列賦值語句模式 string spam a,b,c,d strin...
寒假學習筆記08
之前發了一些相關spark的相關學習,今天學習了下scala語言,scala是一門程式語言,學習scala語言有助於學習spark大資料處理,在學習的同時完成了eclipse的scala的環境搭建,以及寫了乙個簡單的實驗二,的一小部分就是編寫了乙個簡單的演算法,這個程式沒用很長時間,主要是環境搭建耗...