想必大家在網(wǎng)頁頁面都使用過表單,如果你對(duì)單調(diào)的表單控制單元不滿意,不妨看看以下幾條技巧:
1、表單文本輸入的移動(dòng)選擇:在文本輸入欄中,如果加入了提示,來訪者往往要用鼠標(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ì)讓你的主頁生色不少。如: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-familyverdana;font-size10px
其中style=為字體和字大小設(shè)置。
5、修改表單屬性為彈出窗口:大多數(shù)表單激活后,會(huì)在當(dāng)前頁面中打開,影響正常瀏覽。不如修改一下,如:form method=POST action=url target=_blank
其中target=_blank為控制在彈出窗口打開。