設定文字框得到焦點或者失去焦點時的樣式
通常情況下,文字框獲得焦點或者失去焦點的時候,會相應的對文字框的樣式有所改變,以增加美觀度,下面就介紹一下如何實現此功能,程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>文字框獲得焦點的樣式-螞蟻部落</title> <style type="text/css"> ul{list-style:none} ul li{ height:30px; font-size:12px; } input{ width:120px; height:16px; } .focusClass{ color:green; background-color:#CCC; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("input").focus(function(){ $(this).addClass("focusClass"); }).blur(function(){ $(this).removeClass("focusClass"); }); }) </script> </head> <body> <ul> <li>姓名:<input type="text" name="userName" /></li> <li>密碼:<input type="password" name="pw" /></li> </ul> </body> </html>
相關文章
- 文字框獲取或者失去焦點改變樣式屬性
- jQuery文字框獲取焦點和失去焦點jQuery
- 文字框獲取焦點設定樣式
- 獲得焦點時候設定文字框的樣式
- 純css設定input文字框獲取焦點時的樣式CSS
- JQuery設定文字框和密碼框獲得焦點時樣式jQuery密碼
- jquery註冊文字框獲取焦點清空,失去焦點賦值jQuery賦值
- javascript文字框獲取焦點設定其樣式程式碼JavaScript
- CSS實現的文字框獲取焦點設定樣式程式碼CSS
- css 文字框focus獲取焦點設定樣式程式碼例項CSS
- 文字框獲得和失去焦點程式碼例項
- javascript當文字框獲得焦點設定邊框JavaScript
- 純css實現控制文字框獲得焦點的樣式CSS
- input文字框焦點背景變色
- 文字框失去焦點即刻進行表單驗證程式碼例項
- DIV的失去焦點(blur)實現
- jQuery實現文字框獲取焦點jQuery
- 當文字框失去焦點即進行表單驗證簡單例項單例
- jquery.validate失去焦點時就驗證jQuery
- input文字框獲取焦點伸縮效果
- js讓文字框獲取焦點程式碼JS
- 自定義jqGrid編輯功能,當行獲取焦點時編輯,失去焦點時儲存
- RecyclerView設定預設焦點跟多頁面焦點搶佔View
- JavaScript文字框獲取焦點彈出tipsJavaScript
- vue中文字框自動獲取焦點Vue
- javascript實現的文字框焦點位置放置於尾部JavaScript
- 如何使用angularjs實現文字框獲取焦點AngularJS
- TreeView 在失去焦點的時候 選中的TreeNode仍為高亮View
- js 設定焦點 判斷控制元件是否獲得焦點 判斷哪個控制元件獲得焦點JS控制元件
- 點選方向鍵實現文字框焦點切換程式碼例項
- 問題:做了一個獲得焦點和失去焦點的js,為什麼在火狐上執行都是先失去後獲得?JS
- delphi cxgrid 自定義畫焦點框
- 去掉antd的Input元件獲取焦點時的藍色邊框元件
- $("#ZJHM").blur(function () {}失去焦點方法在頁面怎麼呼叫Function
- ueditor文字框初始化如何顯示預設內容,以及文字框獲取焦點後清空預設內容
- CSS 設定input文字框樣式CSS
- css設定input文字框樣式CSS
- 去掉input標籤獲得焦點後的邊框