mimi_van
吞下寂寞的戀人
posts - 30, comments - 45, trackbacks - 0, articles - 0
BlogJava
::
首頁(yè)
::
新隨筆
::
聯(lián)系
::
聚合
::
管理
Html 的部分標(biāo)簽
Posted on 2007-12-17 22:24
mimi_van
閱讀(267)
評(píng)論(0)
編輯
收藏
所屬分類(lèi):
html
因?yàn)槲疫Bhtml都沒(méi)學(xué)過(guò),只是平時(shí)見(jiàn)到的時(shí)候,記得些許,知道大概的格式。
這里有一個(gè)內(nèi)容比較多的html頁(yè)面,作為記錄,用的時(shí)候參考參考。
<
html
>
<
head
>
<
title
>
index
</
title
>
<
head
>
<
body
>
<
form
name
="form1"
id
="form1"
method
="post"
action
=""
>
同步進(jìn)行:
<
input
type
="text"
name
="textfiled"
id
="txt"
onkeyup
="javascript:document.getElementById('label_1').innerText = this.value"
/>
這是同步的標(biāo)簽:
<
label
id
= "label_1"
></
label
>
<
br
/>
<
br
/>
只允許輸入數(shù)字(QQ的驗(yàn)證):
<
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
= "大類(lèi)"
name
="checkbox1"
/>
大類(lèi)
<
br
/>
<
input
type
="checkbox"
id
="checkbox1"
value
= "中類(lèi)"
name
="checkbox1"
/>
中類(lèi)
<
br
/>
<
input
type
="checkbox"
id
="checkbox1"
value
= "小類(lèi)"
name
="checkbox1"
/>
小類(lèi)
<
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
=""
>
--請(qǐng)選擇--
</
option
>
<
option
value
="我的秘書(shū)"
>
我的秘書(shū)
</
option
>
<
option
value
="我的工作臺(tái)"
>
我的工作臺(tái)
</
option
>
<
option
value
="項(xiàng)目管理"
>
項(xiàng)目管理
</
option
>
<
option
value
="計(jì)劃管理"
>
計(jì)劃管理
</
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
="我的秘書(shū)"
>
我的秘書(shū)
</
option
>
<
option
value
="我的工作臺(tái)"
>
我的工作臺(tái)
</
option
>
<
option
value
="項(xiàng)目管理"
>
項(xiàng)目管理
</
option
>
<
option
value
="計(jì)劃管理"
>
計(jì)劃管理
</
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
>
<!--
另一個(gè)select 多選框b2 Begin
-->
<
select
size
="2"
multiple id
="b2"
style
="height:151px; width:180px;"
>
</
select
>
<!--
另一個(gè)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
>
新用戶(hù)注冊(cè)
刷新評(píng)論列表
只有注冊(cè)用戶(hù)
登錄
后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航:
博客園
IT新聞
Chat2DB
C++博客
博問(wèn)
相關(guān)文章:
html 標(biāo)記大全 <轉(zhuǎn)載>
Html 的部分標(biāo)簽
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
常用鏈接
我的隨筆
我的評(píng)論
我的參與
最新評(píng)論
留言簿
(2)
給我留言
查看公開(kāi)留言
查看私人留言
隨筆分類(lèi)
encoding(1)
E文(6)
flv
html(3)
it 基本知識(shí)(1)
jar文件(4)
java 基本語(yǔ)法、用法、源代碼(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)
相冊(cè)
mimi_van
搜索
最新評(píng)論
1.?re: 用MyEciplse時(shí) some character can not mapped using "iso-8859-1" character encoding 解決
6年后遇到同樣問(wèn)題,還在解決。
--胖頭魚(yú)
2.?re: 在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法
樓主好2B,
.indexOf() 返回的是下標(biāo)。。。不懂裝懂
--aaaaaaaaa
3.?re: 在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法[未登錄](méi)
哈哈 沒(méi)什么的,可能一時(shí)沒(méi)反應(yīng)過(guò)來(lái)嘛
哥看好你!
--Randy
4.?re: 用MyEciplse時(shí) some character can not mapped using "iso-8859-1" character encoding 解決
可是,口改成了UTF-8還是保存不了啊~~
--盛
5.?re: 在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法[未登錄](méi)
樓主,我覺(jué)得你不適合從事程序員這個(gè)行業(yè)。趁早轉(zhuǎn)行吧,別害人害己了。
--Iceberg
閱讀排行榜
1.?在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法(13344)
2.?proxool 的使用 配置 (7827)
3.?用MyEciplse時(shí) some character can not mapped using "iso-8859-1" character encoding 解決(5944)
4.?jsp 頁(yè)面之間 get / post 方法 傳遞參數(shù)內(nèi)容 亂碼 解決之道(5402)
5.?html 標(biāo)記大全 <轉(zhuǎn)載>(1538)
評(píng)論排行榜
1.?用MyEciplse時(shí) some character can not mapped using "iso-8859-1" character encoding 解決(19)
2.?在javascript里 有關(guān) indexOf 或者 startsWith 或者 endsWith 這樣的方法(8)
3.?有誰(shuí)做過(guò)基于java的,帶進(jìn)度條的上傳?(5)
4.?有誰(shuí)做過(guò)基于java的,帶進(jìn)度條的上傳?(3)
5.?用 My Eclipse 發(fā)布的帶有第三方j(luò)ar 的jar文件 和 JSmooth 的使用(3)
主站蜘蛛池模板:
99视频有精品视频免费观看
|
无遮挡呻吟娇喘视频免费播放
|
国产亚洲3p无码一区二区
|
亚洲av无码精品网站
|
亚洲理论片在线观看
|
亚洲国产午夜精品理论片在线播放
|
激情婷婷成人亚洲综合
|
v片免费在线观看
|
免费国产污网站在线观看不要卡
|
青草草在线视频永久免费
|
亚洲尤码不卡AV麻豆
|
亚洲国产成人精品久久
|
亚洲国产无线乱码在线观看
|
永久免费看bbb
|
男男黄GAY片免费网站WWW
|
69影院毛片免费观看视频在线
|
中文字幕亚洲不卡在线亚瑟
|
亚洲av无码一区二区三区不卡
|
你懂得的在线观看免费视频
|
国产卡二卡三卡四卡免费网址
|
亚洲精品WWW久久久久久
|
亚洲国产精品综合福利专区
|
香蕉免费看一区二区三区
|
成人免费视频88
|
久久久久亚洲av无码专区蜜芽
|
特级毛片全部免费播放a一级
|
国产成人免费高清激情明星
|
亚洲精品午夜无码电影网
|
性xxxx视频免费播放直播
|
亚洲中久无码永久在线观看同
|
日批视频网址免费观看
|
亚洲人成网址在线观看
|
七次郎成人免费线路视频
|
亚洲精品狼友在线播放
|
99久久精品日本一区二区免费
|
久久精品国产亚洲香蕉
|
波多野结衣中文字幕免费视频
|
美女露隐私全部免费直播
|
亚洲AV中文无码字幕色三
|
成年女人毛片免费观看97
|
成人无码视频97免费
|