mimi_van
吞下寂寞的戀人
posts - 30, comments - 45, trackbacks - 0, articles - 0
BlogJava
::
首頁
::
新隨筆
::
聯(lián)系
::
聚合
::
管理
Html 的部分標簽
Posted on 2007-12-17 22:24
mimi_van
閱讀(262)
評論(0)
編輯
收藏
所屬分類:
html
因為我連html都沒學(xué)過,只是平時見到的時候,記得些許,知道大概的格式。
這里有一個內(nèi)容比較多的html頁面,作為記錄,用的時候參考參考。
<
html
>
<
head
>
<
title
>
index
</
title
>
<
head
>
<
body
>
<
form
name
="form1"
id
="form1"
method
="post"
action
=""
>
同步進行:
<
input
type
="text"
name
="textfiled"
id
="txt"
onkeyup
="javascript:document.getElementById('label_1').innerText = this.value"
/>
這是同步的標簽:
<
label
id
= "label_1"
></
label
>
<
br
/>
<
br
/>
只允許輸入數(shù)字(QQ的驗證):
<
input
type
="text"
id
="txtQQ"
name
="textfield"
onkeypress
="return aa()"
/>
<
br
/>
<
br
/>
<
label
>
*****************************************************************
</
label
>
<
br
/>
<
br
/>
<
table
>
<
tr
>
<
td
>
<
input
type
="checkbox"
id
="checkbox1"
value
= "大類"
name
="checkbox1"
/>
大類
<
br
/>
<
input
type
="checkbox"
id
="checkbox1"
value
= "中類"
name
="checkbox1"
/>
中類
<
br
/>
<
input
type
="checkbox"
id
="checkbox1"
value
= "小類"
name
="checkbox1"
/>
小類
<
br
/>
</
td
>
<
td
>
<
input
type
="button"
id
="check_1"
name
="check_1"
value
="提交"
onclick
="mycheck_1()"
/>
</
td
>
<
td
>
<
textarea
rows
="9"
cols
="25"
id
="textarea_1"
name
="textarea_1"
></
textarea
>
<
br
/>
</
td
>
</
tr
>
</
table
>
<
label
>
*****************************************************************
</
label
>
<
br
/>
<
br
/>
<
label
><
input
type
="radio"
id
="radio1"
name
="radiogroup"
value
="男"
/>
男
</
label
>
<
label
><
input
type
="radio"
id
="radio2"
name
="radiogroup"
value
="女"
/>
女
</
label
>
<
input
type
="button"
id
="radio_1"
name
="radio_1"
value
="提交"
onclick
="myRadio_1()"
/>
<
br
/>
<
br
/>
<
label
><
input
type
="radio"
id
="radio1"
name
="radiogroup_1"
value
="東"
/>
東
</
label
>
<
label
><
input
type
="radio"
id
="radio2"
name
="radiogroup_1"
value
="西"
/>
西
</
label
>
<
label
><
input
type
="radio"
id
="radio1"
name
="radiogroup_1"
value
="南"
/>
南
</
label
>
<
label
><
input
type
="radio"
id
="radio2"
name
="radiogroup_1"
value
="北"
/>
北
<
label
>
<
label
><
input
type
="radio"
id
="radio1"
name
="radiogroup_1"
value
="中"
/>
中
<
label
>
<
input
type
="button"
id
="radio_2"
name
="radio_2"
value
="提交"
onclick
="myRadio_2()"
/>
<
input
type
="text"
name
="textfiled"
id
="txtRadio"
value
=""
/>
<
br
/>
<
br
/>
<
label
>
*****************************************************************
</
label
>
<
br
/>
<
br
/>
<!--
select 單選框 Begin
-->
<
label
>
select 單選框
</
label
>
<
br
/>
<
select
name
="select"
size
="1"
id
="danXuan"
onchange
="changeText()"
>
<
option
value
=""
>
--請選擇--
</
option
>
<
option
value
="我的秘書"
>
我的秘書
</
option
>
<
option
value
="我的工作臺"
>
我的工作臺
</
option
>
<
option
value
="項目管理"
>
項目管理
</
option
>
<
option
value
="計劃管理"
>
計劃管理
</
option
>
<
option
value
="企業(yè)管理"
>
企業(yè)管理
</
option
>
</
select
>
<
input
type
="text"
name
="textfiled"
id
="select_danxuan"
value
=""
/>
<!--
select 單選框 Begin
-->
<
br
/>
<
br
/>
<
label
>
*****************************************************************
</
label
>
<
br
/>
<
label
>
select 多選框
</
label
>
<
table
>
<
tr
>
<
td
>
<!--
select 多選框b1 Begin
-->
<
select
size
="2"
multiple id
="b1"
style
="height:151px; width:180px;"
>
<
option
value
="我的秘書"
>
我的秘書
</
option
>
<
option
value
="我的工作臺"
>
我的工作臺
</
option
>
<
option
value
="項目管理"
>
項目管理
</
option
>
<
option
value
="計劃管理"
>
計劃管理
</
option
>
<
option
value
="企業(yè)管理"
>
企業(yè)管理
</
option
>
</
select
>
</
td
>
<!--
select 多選框b1 end
-->
<
td
>
<!--
select 多選框 button Begin
-->
<
table
>
<
tr
align
="center"
><
input
type
="button"
value
= " > "
onclick
="myRight()"
/></
tr
>
<
tr
align
="center"
><
input
type
="button"
value
= " >> "
onclick
="myRightAll()"
/></
tr
>
<
tr
align
="center"
><
input
type
="button"
value
= " < "
onclick
="myleft()"
/></
tr
>
<
tr
align
="center"
><
input
type
="button"
value
= " << "
onclick
="myleftAll()"
/></
tr
>
<
tr
align
="center"
><
input
type
="button"
value
= " ↑ "
onclick
="myup()"
/></
tr
>
<
tr
align
="center"
><
input
type
="button"
value
= " ↓ "
onclick
="mydown()"
/></
tr
>
</
table
>
<!--
select 多選框 button end
-->
</
td
>
<
td
>
<!--
另一個select 多選框b2 Begin
-->
<
select
size
="2"
multiple id
="b2"
style
="height:151px; width:180px;"
>
</
select
>
<!--
另一個select 多選框b2 end
-->
</
td
>
<
td
>
<
input
type
="button"
id
="select_duoxuan"
name
="select_duoxuan"
value
="確定"
onclick
="myselect_duoxuan()"
>
</
td
>
<
td
>
<
textarea
rows
="9"
cols
="25"
id
="textarea"
name
="textarea"
></
textarea
>
</
td
>
<
tr
>
</
table
>
<
br
/>
</
form
>
</
body
>
</
html
>
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發(fā)表評論。
網(wǎng)站導(dǎo)航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
相關(guān)文章:
html 標記大全 <轉(zhuǎn)載>
Html 的部分標簽
Powered by:
BlogJava
Copyright © mimi_van
日歷
<
2007年12月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
留言簿
(2)
給我留言
查看公開留言
查看私人留言
隨筆分類
encoding(1)
E文(6)
flv
html(3)
it 基本知識(1)
jar文件(4)
java 基本語法、用法、源代碼(2)
javascript(2)
proxool(1)
sqlserver(1)
TerryLee 老師(1)
tomcat(1)
喜歡的it文章(3)
美食(1)
隨筆檔案
2008年8月 (1)
2008年2月 (1)
2008年1月 (14)
2007年12月 (8)
2007年11月 (2)
相冊
mimi_van
搜索
最新評論
1.?re: 用MyEciplse時 some character can not mapped using "iso-8859-1" character encoding 解決
6年后遇到同樣問題,還在解決。
--胖頭魚
2.?re: 在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法
樓主好2B,
.indexOf() 返回的是下標。。。不懂裝懂
--aaaaaaaaa
3.?re: 在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法[未登錄]
哈哈 沒什么的,可能一時沒反應(yīng)過來嘛
哥看好你!
--Randy
4.?re: 用MyEciplse時 some character can not mapped using "iso-8859-1" character encoding 解決
可是,口改成了UTF-8還是保存不了啊~~
--盛
5.?re: 在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法[未登錄]
樓主,我覺得你不適合從事程序員這個行業(yè)。趁早轉(zhuǎn)行吧,別害人害己了。
--Iceberg
閱讀排行榜
1.?在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法(13334)
2.?proxool 的使用 配置 (7818)
3.?用MyEciplse時 some character can not mapped using "iso-8859-1" character encoding 解決(5931)
4.?jsp 頁面之間 get / post 方法 傳遞參數(shù)內(nèi)容 亂碼 解決之道(5395)
5.?html 標記大全 <轉(zhuǎn)載>(1531)
評論排行榜
1.?用MyEciplse時 some character can not mapped using "iso-8859-1" character encoding 解決(19)
2.?在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法(8)
3.?有誰做過基于java的,帶進度條的上傳?(5)
4.?有誰做過基于java的,帶進度條的上傳?(3)
5.?用 My Eclipse 發(fā)布的帶有第三方j(luò)ar 的jar文件 和 JSmooth 的使用(3)
主站蜘蛛池模板:
亚洲黄网站wwwwww
|
性做久久久久久免费观看
|
亚洲欧洲国产精品你懂的
|
免费人成在线观看播放a
|
亚洲产国偷V产偷V自拍色戒
|
日韩版码免费福利视频
|
永久免费无码日韩视频
|
亚洲综合小说久久另类区
|
国产无遮挡又黄又爽免费视频
|
国产一级片免费看
|
羞羞漫画页面免费入口欢迎你
|
亚洲AV人无码激艳猛片
|
免费国产高清视频
|
青娱乐在线免费观看视频
|
亚洲avav天堂av在线不卡
|
亚洲不卡无码av中文字幕
|
一级做a爰片性色毛片免费网站
|
久久精品国产亚洲AV无码娇色
|
亚洲成人免费网站
|
jizz18免费视频
|
亚洲午夜无码久久
|
亚洲国产精品热久久
|
免费A级毛片无码A∨男男
|
色影音免费色资源
|
中文毛片无遮挡高清免费
|
亚洲AV噜噜一区二区三区
|
亚洲黄色免费电影
|
亚洲精品无码久久久久去q
|
在线v片免费观看视频
|
国产精品免费高清在线观看
|
日韩在线视频免费
|
亚洲国产精品网站在线播放
|
久久久久久精品成人免费图片
|
特级毛片爽www免费版
|
91在线亚洲综合在线
|
免费在线观看毛片
|
最近免费中文字幕4
|
亚欧在线精品免费观看一区
|
永久免费AV无码网站国产
|
香港经典a毛片免费观看看
|
亚洲国产成人精品电影
|