JS實現點擊文本框改變背景顏色
本文實例為大傢分享瞭JS實現點擊文本框改變背景顏色的具體代碼,供大傢參考,具體內容如下
代碼如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>文本框獲焦點改變背景顏色</title> </head> <body> <table align="center"width="337" height="204"border=()> <tr> <td width="108">用戶名</td> <td width="213"><form name="form1"method="post"action=""> <input type="text"name="textfield"onfocus="txtfocus()"onBlur="txtblur()"> </form></td> </tr> <tr> <td >密碼</td> <td ><form name="form2"method="post"action=""> <input type="text"name="textfield2"onfocus="txtfocus()"onBlur="txtblur()"> </form></td> </tr> <tr> <td >真實姓名</td> <td ><form name="form3"method="post"action=""> <input type="text"name="textfield3"onfocus="txtfocus()"onBlur="txtblur()"> </form></td> </tr> <tr> <td >性別</td> <td ><form name="form4"method="post"action=""> <input type="text"name="textfield5"onfocus="txtfocus()"onBlur="txtblur()"> </form></td> </tr> <tr> <td >郵箱</td> <td ><form name="form5"method="post"action=""> <input type="text"name="textfield4"onfocus="txtfocus()"onBlur="txtblur()"> </form></td> </tr> </table> <script language="JavaScript"> <!-- function txtfocus(event){ var e=window.event; var obj=e.srcElement; obj.style.background="#FF9966"; } function txtblur(event){ var e=window.event; var obj=e.srcElement; obj.style.background="#FFFFFF"; } //--> </script> </body> </html>
結果如圖:
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。
推薦閱讀:
- JavaScript onblur與onfocus事件詳解
- JavaScript表單驗證示例詳解
- HTML頁面中使用Vue實例進階(快速學會上手Vue)
- SpringMVC RESTFul實戰案例刪除功能實現
- JavaScript實現表單驗證