Deutsch
<script> function suckerfish(type, tag, parentId) { if (window.attachEvent) { window.attachEvent("onload", function() { var sfEls = (parentId==null)?document.getElementsByTagName(tag):document .getElementById(parentId).getElementsByTagName(tag); type(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"), ""); } } } suckerfish(sfFocus, "INPUT"); Saugfisch(sfFocus, „TEXTAREA“); </script> <style type="text/css"> form{ margin: 0px auto; Breite: 450px; Rand: durchgehend 1px #CCC; } .bo{ border-bottom: solid 1px #CCC; } label{ float: left; Polsterung: 10px 0px 4px 30px; } input{ padding: 1px; } input,textarea{ border: 1px solid #CCC; Rand: 5px 0px; } textarea{ padding: 2px; } .bt{ width: 38px; Höhe: 20px; Schriftgröße: 11px; Rand: durchgehend 1px #CCC; Hintergrund: #FBFBFB; Textausrichtung: Mitte; } .btcenter{ text-align: center; klar: links; Polsterung: 4px 0px 0px; } .sffocus {/*----für IE----*/ Hintergrund: #F0F9FB; Rand: 1 Pixel durchgehend #1D95C7; } textarea:focus, input:focus {/*----für Firefox......----*/ Hintergrund: #F0F9FB; Rand: 1 Pixel durchgehend #1D95C7; } body { Schriftfamilie: Arial, Helvetica, serifenlos; Schriftgröße: 12px; Farbe: #666666; margin-top: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="Send" /> <input type="reset" class="bt" value="Reset" /> </div> </form>