HTML基礎(chǔ)必看---表單,圖片熱點(diǎn),網(wǎng)頁劃區(qū)和拼接詳解
一、表單
<form id="" name="" method="post/get" action="負(fù)責(zé)處理的服務(wù)端"> id不可重復(fù);name可重復(fù);get提交有長度限制,并且編碼后的內(nèi)容在地址欄可見,post提交無長度限制,且編碼后內(nèi)容不可見。
</form>
1、文本輸入
文本框<input type="txt" name="" id="" value="" />
注:上面設(shè)置value值,表示設(shè)置默認(rèn)值
密碼框<input type="password" name="" id="" value="" />
文本域<textarea name="" id="" cols=""(字符多少) rows=""(幾行高)></textarea>
隱藏域<input type="hidden" name="" id="" value="" />
2、按鈕
提交按鈕<input type="submit" name="" id="" disabled="disabled" value=""/>點(diǎn)擊后轉(zhuǎn)到form內(nèi)的提交服務(wù)器的地址
注:上面中設(shè)置value值表示運(yùn)行時(shí)上面顯示的文字。
重置按鈕<input type="reset" name="" id="" disabled="disabled" value=""/>
普通按鈕<input type="button" name="" id="" disabled="disabled" value=""/>
圖片按鈕<input type="image" name="" id="" disabled="disabled" src="圖片地址"/>
附:
disabled,使按鈕失效;enable,使可用。
3、選擇輸入
單選按鈕組<input type="redio" name="" checked="checked" value=""/> name的值用來分組;value值看不見,是提交給程序用的;checked,設(shè)置默認(rèn)選項(xiàng)。
注:單選按鈕組選中后不可取消。
復(fù)選框組<input type="checkbox" name="" checked="checked" value=""/>
注:checked="checked"表示一上來就選中,且復(fù)選框可選中可取消。
文件上傳<input type="file" name="" id="" />
<label for=""></label>
<label> 標(biāo)簽為 input 元素定義標(biāo)注(標(biāo)記)。
label 元素不會向用戶呈現(xiàn)任何特殊效果。不過,它為鼠標(biāo)用戶改進(jìn)了可用性。如果您在 label 元素內(nèi)點(diǎn)擊文本,就會觸發(fā)此控件。就是說,當(dāng)用戶選擇該標(biāo)簽時(shí),瀏覽器就會自動將焦點(diǎn)轉(zhuǎn)到和標(biāo)簽相關(guān)的表單控件上。
<label> 標(biāo)簽的 for 屬性應(yīng)當(dāng)與相關(guān)元素的 id 屬性相同。
下拉列表框
<select name="" id="" size="" multiple="multiple"> --size=1時(shí),為菜單;>1時(shí),為列表。multiple為多選。
<option value="值">內(nèi)容1</option>
<option value="值" selected="selected">內(nèi)容2</option> --selected,設(shè)為默認(rèn)
<option value="值">內(nèi)容3</option>
</select>
綜上HTML程序顯示:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>無標(biāo)題文檔</title>
- </head>
- <body background="22.jpg">
- <form>
- 賬號:<input type="text" value="12345" disabled="disabled" /><br /><br />
- 密碼:<input type="password" /><br /><br />
- 說說:<textarea cols="140" rows="8"></textarea><br /><br />
- 請問:中華人民共和國成立于那一年?<input type="text" />
- <input type="submit" value="提交" />
- <input type="hidden" value="1949" />
- <input type="reset" /><br />
- <input type="button" value="登錄" /><br />
- <input type="image" src="55.jpg" /><br />
- <input type="radio" name="sex" />男<br />
- <input type="radio" name="sex" />女<br />
- <input type="checkbox" checked="checked" />可樂<br />
- <input type="checkbox" />雞腿<br />
- <input type="file" /><br /><br />
- <select size="1">
- <option value="11">可口可樂</option>
- <option value="22">雪碧</option>
- <option value="33" selected="selected">芬達(dá)</option>
- </select>
- </form>
- </body>
- </html>
運(yùn)行結(jié)果顯示:
實(shí)例分析:做郵箱界面程序顯示
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>無標(biāo)題文檔</title>
- </head>
- <body background="11.jpg">
- <font face="華文隸書">
- <table align="center" width="600" height="600" border="1" cellpadding="0" cellspacing="0">
- <tr>
- <td width="150"> 郵箱:</td>
- <td><form><input type="text" /></form></td>
- </tr>
- <tr>
- <td></td>
- <td valign="middle"><font color="#999999">需要通過郵箱激活賬戶,不支持sohu,21cn,sogou的郵箱</font></td>
- </tr>
- <tr>
- <td> 登錄用戶名:</td>
- <td><form><input type="text" /></form></td>
- </tr>
- <tr>
- <td></td>
- <td valign="middle"><font color="#999999">僅在登錄時(shí)使用,字符數(shù)不少于4個(gè)</font></td>
- </tr>
- <tr>
- <td> 顯示名稱:</td>
- <td><form><input type="text" /></form></td>
- </tr>
- <tr>
- <td></td>
- <td><font color="#999999">即昵稱,字符數(shù)不少于2個(gè)</font></td>
- </tr>
- <tr>
- <td> 密碼:</td>
- <td><form><input type="password" /></form></td>
- </tr>
- <tr>
- <td> 確認(rèn)密碼:</td>
- <td><form><input type="password" /></form></td>
- </tr>
- <tr>
- <td></td>
- <td><font color="#999999">至少8位,必須包含字母、數(shù)字、特殊字符</font></td>
- </tr>
- <tr>
- <td> 性別:</td>
- <td><form><select size="1">
- <option value="1" selected="selected">男</option>
- <option value="2">女</option>
- </select></form>
- </td>
- </tr>
- <tr>
- <td> 喜好:</td>
- <td><form><select size="1">
- <option value="1">打游戲</option>
- <option value="2">打籃球</option>
- <option value="3">看電影</option>
- <option value="4" selected="selected">聽音樂</option>
- <option value="5">旅游</option>
- </select></form>
- </td>
- </tr>
- <tr>
- <td></td>
- <td><form><input type="submit" value="注冊" /></form></td>
- </tr>
- </table>
- </font>
- </body>
- </html>
運(yùn)行結(jié)果顯示:
二、圖片熱點(diǎn)
規(guī)劃出圖片上的一個(gè)區(qū)域,可以做出超鏈接,直接點(diǎn)擊圖片區(qū)域就可以完成跳轉(zhuǎn)的效果。
示例:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>無標(biāo)題文檔</title>
- </head>
- <body>
- <img src="a006.jpg" usemap="ditu" />
- <map name="ditu">
- <area shape="rect" coords="0,0,50,50" href="http://www.baidu.com" />
- <area shape="circle" coords="265,118,80" href="http://qq.com" />
- </map>
- </body>
- </html>
設(shè)計(jì)界面:矩形和圓形的地方在運(yùn)行時(shí),鼠標(biāo)放上會變成小手狀,表示有鏈接。
三、網(wǎng)頁劃區(qū)和拼接
劃區(qū):在一個(gè)網(wǎng)頁里,規(guī)劃出一個(gè)區(qū)域用來展示另一個(gè)網(wǎng)頁的內(nèi)容。
示例:
拼接:在一個(gè)網(wǎng)絡(luò)頁面內(nèi),規(guī)劃出多個(gè)頁面窗口,以表格拼接的形式展示出來。(可以想象一下監(jiān)控畫面,多個(gè)畫面同時(shí)顯示)
示例:
以上這篇HTML基礎(chǔ)必看---表單,圖片熱點(diǎn),網(wǎng)頁劃區(qū)和拼接詳解就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持我們。
原文地址:http://www.cnblogs.com/H2921306656/archive/2016/07/09/5656699.html
上一篇:關(guān)于html水平垂直居中的問題小結(jié)
欄 目:CSS/HTML
下一篇:HTML初學(xué)者適用的十五條最佳實(shí)踐
本文標(biāo)題:HTML基礎(chǔ)必看---表單,圖片熱點(diǎn),網(wǎng)頁劃區(qū)和拼接詳解
本文地址:http://mengdiqiu.com.cn/a1/CSS_HTML/9656.html
您可能感興趣的文章
- 04-02好看的字體樣式css,好看的字體樣式圖片
- 04-02html中加入css樣式的簡單介紹
- 01-10通過html為FLASH加鏈接的實(shí)現(xiàn)代碼(div層)
- 01-10IE瀏覽器HTML Hack標(biāo)簽總結(jié)
- 01-10html用style添加屬性示例
- 01-10HTML中rel屬性分析
- 01-10HTML元素設(shè)置焦點(diǎn)的方法
- 01-10在html文件里include文件內(nèi)容的方法小結(jié)
- 01-10常用HTML meta 標(biāo)簽屬性(網(wǎng)站兼容與優(yōu)化需要)
- 01-10用HTML和CSS打造屬于自己的暖男“大白”


閱讀排行
本欄相關(guān)
- 04-02表格樣式css樣式,css樣式表單
- 04-02好看的字體樣式css,好看的字體樣式圖
- 04-02分頁樣式css,分頁樣式j(luò)q
- 04-02分頁樣式css,分頁樣式欄里用來定義首
- 04-02css樣式的引入,css樣式怎么引入
- 04-02css滾動條樣式,css滾動條的樣式
- 04-02css樣式引入方式有幾種,網(wǎng)頁引入css樣
- 04-02html中加入css樣式的簡單介紹
- 04-02vue中的css樣式布局,vue添加css樣式
- 04-02內(nèi)嵌樣式css,內(nèi)嵌樣式表,內(nèi)部樣式表
隨機(jī)閱讀
- 01-10C語言打印楊輝三角示例匯總
- 01-10C++ 類訪問控制的條件總結(jié)
- 08-05織夢dedecms首頁調(diào)用縮略圖為背景
- 08-05DEDECMS點(diǎn)擊主欄目默認(rèn)顯示第一個(gè)子欄
- 01-10bat批處理徹底隱藏文件的方法(使用
- 01-10C++實(shí)現(xiàn)將數(shù)組中的值反轉(zhuǎn)
- 08-05dedecms織夢模板全站調(diào)用收藏?cái)?shù)的方法
- 01-10vue實(shí)現(xiàn)分頁加載效果
- 01-11常用的HTML富文本編譯器UEditor、CKEdi
- 08-05dedecms織夢模板編輯文檔的同時(shí)自動更