国产色在线视频-国产色综合一区二区三区-国产身材极品喷水 在线播放-国产深夜福利视频观看-国产深夜福利视频在线-国产深夜福利视频在线播放

設(shè)計(jì)個(gè)性化表單的技巧

2012/5/23 14:45:37   閱讀:2343    發(fā)布者:2343

 1、表單文本輸入的移動(dòng)選擇:在文本輸入欄中,如果加入了提示,來(lái)訪者往往要用鼠標(biāo)選取后刪除,再輸入有用的信息。其實(shí)只要加入onMouseOver="this.focus()" onFocus="this.select()" 代碼到 <textarea> 中,一切就會(huì)變得簡(jiǎn)單多了,如:

<textarea name=textarea wrap=virtual rows=2 cols=22 onMouseOver="this.focus()" onFocus="this.select()">Input English..</textarea>

  類似的,可以加入代碼到<input>。

  2、表單輸入單元點(diǎn)擊刪除:本列同上則作用類似,只是使用鼠標(biāo)上略有變化,需要點(diǎn)擊而不像上則的只要鼠標(biāo)覆蓋。如:

<input type=text name="address" size=19 value="Enter,e-mail..."onFocus="this.value='">

  點(diǎn)擊輸入單元后,提示信息會(huì)刪除,是不是很方便。

  3、表單輸入單元的邊框設(shè)置:更改傳統(tǒng)的表單單元邊框,會(huì)讓你的主頁(yè)生色不少。如:

<input type=radio name=action value=subscribe checked style="BORDER-BOTTOM: dashed 1px; BORDER-LEFT: dashed 1px; BORDER-RIGHT: dashed 1px; BORDER-TOP: dashed 1px;background-color: #FEF5C8">

  其中"style=***"為左右上下和背景色設(shè)置,適用于其它單元,請(qǐng)讀者親自試試。

  4、表單輸入單元的文字設(shè)置:表單中單元的字體是可以修改的,如:

<input type=text name="address" size=19 value="Enter,e-mail..." style=font-family:"verdana";font-size:10px >

  其中"style=***"為字體和字大小設(shè)置。