mimi_van
吞下寂寞的戀人
posts - 30, comments - 45, trackbacks - 0, articles - 0
BlogJava
::
首頁
::
新隨筆
::
聯系
::
聚合
::
管理
Html 的部分標簽
Posted on 2007-12-17 22:24
mimi_van
閱讀(262)
評論(0)
編輯
收藏
所屬分類:
html
因為我連html都沒學過,只是平時見到的時候,記得些許,知道大概的格式。
這里有一個內容比較多的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
/>
只允許輸入數字(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
="企業管理"
>
企業管理
</
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
="企業管理"
>
企業管理
</
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
>
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發表評論。
網站導航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
相關文章:
html 標記大全 <轉載>
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里 有關 indexOf 或者 startsWith 或者 endsWith 這樣的方法
樓主好2B,
.indexOf() 返回的是下標。。。不懂裝懂
--aaaaaaaaa
3.?re: 在javascript里 有關 indexOf 或者 startsWith 或者 endsWith 這樣的方法[未登錄]
哈哈 沒什么的,可能一時沒反應過來嘛
哥看好你!
--Randy
4.?re: 用MyEciplse時 some character can not mapped using "iso-8859-1" character encoding 解決
可是,口改成了UTF-8還是保存不了啊~~
--盛
5.?re: 在javascript里 有關 indexOf 或者 startsWith 或者 endsWith 這樣的方法[未登錄]
樓主,我覺得你不適合從事程序員這個行業。趁早轉行吧,別害人害己了。
--Iceberg
閱讀排行榜
1.?在javascript里 有關 indexOf 或者 startsWith 或者 endsWith 這樣的方法(13334)
2.?proxool 的使用 配置 (7818)
3.?用MyEciplse時 some character can not mapped using "iso-8859-1" character encoding 解決(5930)
4.?jsp 頁面之間 get / post 方法 傳遞參數內容 亂碼 解決之道(5394)
5.?html 標記大全 <轉載>(1531)
評論排行榜
1.?用MyEciplse時 some character can not mapped using "iso-8859-1" character encoding 解決(19)
2.?在javascript里 有關 indexOf 或者 startsWith 或者 endsWith 這樣的方法(8)
3.?有誰做過基于java的,帶進度條的上傳?(5)
4.?有誰做過基于java的,帶進度條的上傳?(3)
5.?用 My Eclipse 發布的帶有第三方jar 的jar文件 和 JSmooth 的使用(3)
主站蜘蛛池模板:
亚洲手机中文字幕
|
中文字幕无码精品亚洲资源网
|
亚洲国产高清在线
|
久久久精品免费国产四虎
|
精品国产日韩亚洲一区
|
一个人免费观看日本www视频
|
久久久久亚洲AV无码去区首
|
三上悠亚电影全集免费
|
国产亚洲自拍一区
|
a级毛片在线免费看
|
亚洲视频在线免费观看
|
2021精品国产品免费观看
|
激情五月亚洲色图
|
一级毛片成人免费看免费不卡
|
午夜国产大片免费观看
|
免费精品国产自产拍在线观看
|
伊人亚洲综合青草青草久热
|
亚洲高清有码中文字
|
久草福利资源网站免费
|
亚洲国产一区国产亚洲
|
久久国内免费视频
|
男人的天堂av亚洲一区2区
|
亚洲国产精品丝袜在线观看
|
丁香花在线观看免费观看图片
|
亚洲国产成人久久精品动漫
|
可以免费看黄的网站
|
色五月五月丁香亚洲综合网
|
国产免费看JIZZ视频
|
亚洲国产精品无码观看久久
|
亚洲精品第一国产综合境外资源
|
av永久免费网站在线观看
|
91嫩草国产在线观看免费
|
亚洲熟妇无码一区二区三区导航
|
又色又污又黄无遮挡的免费视
|
两个人看的www免费
|
亚洲六月丁香婷婷综合
|
亚洲国产主播精品极品网红
|
无码人妻一区二区三区免费手机
|
91精品国产免费久久久久久青草
|
亚洲日本成本人观看
|
色窝窝免费一区二区三区
|