中文(繁体)
<script> functionuckerfish(type, tag, ParentId) { if (window.attachEvent) { window.attachEvent("onload", function() { var sfEls = (parentId==null)?document.getElementsByTagName(tag):document . getElementById(parentId).getElementsByTagName(tag); 類型(sfEls); } } sfFocus = function(sfEls) { for (var i=0; i<sfEls.length; i++) { sfEls[i].onfocus=function() { this.className+=" sffocus"; } } sfEls[i].onblur=function() { this.className=this.className.replace(new RegExp(" sffocus\b"), ""); } } } 吸盤魚(sfFocus,「輸入」);吸盤魚(sfFocus,“TEXTAREA”); </script> <style type="text/css"> 表單{ margin: 0px auto;寬度:450px;邊框:實心 1px #CCC; } .bo{ 邊框底部:實心 1px #CCC; } 標籤{ 浮動:左;內邊距:10 像素 0 像素 4 像素 30 像素; } 輸入{ 填充:1px; } 輸入,文字區域{ 邊框:1px 實心#CCC;邊距:5px 0px; } 文字區域{ 填充:2px; } .bt{ 寬度: 38px;高度:20px;字體大小:11px;邊框:實心 1px #CCC;背景:#FBFBFB;文字對齊:居中; } .btcenter{ 文字對齊:中心;清除:左;內邊距:4px 0px 0px; } .sffocus {/*----適用於 IE----*/ 背景:#F0F9FB;邊框:1px實線#1D95C7; } textarea:focus, input:focus {/*----對於 firefox......----*/ 背景: #F0F9FB;邊框:1px實線#1D95C7; } body { 字型系列:Arial、Helvetica、sans-serif;字體大小:12px;顏色:#666666;上邊距:20px; } </style> <form action="#" method="post" name="myform" id="myform"> <div class="bo"> <label>姓名:</label> <input type=" text"size="20" maxlength="10" /> </div> <div class="bo"> <label>電話:</label> <input type="text" size="20" maxlength=" 16" /> </div> <div class="bo"> <label>主題:</label> <input type="text" size="30" maxlength="20" /> </div> <div class="bo"> <label>內容:</label> <textarea cols="40" rows="8"></textarea> </div> <div class="btcenter"> <input type="submit " class="bt" value="發送" /> <input type="reset" class="bt" value="Reset" /> </div> </form>