獲得焦點時候設定文字框的樣式

antzone發表於2017-03-29

本章節介紹一下如何當文字框獲取焦點以後設定它的樣式。

當然這是比較簡單的應用,也許初學者會對此程式碼有需要,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript">
window.onload=function(){
  var otxt=document.getElementById("txt");
  otxt.onfocus=function(){
    this.style.color="green";
  }
  otxt.onblur=function(){
    this.style.color="";
  }
}
</script>
</head>
<body>
螞蟻部落:<input type="text" id="txt" value="softwhy.com"/>
</body>
</html>

上面的程式碼實現了我們的要求,程式碼比較簡單這裡就不多介紹了,具體可以參閱相關閱讀。

相關閱讀:

1.onfocus事件可以參閱javascript focus 事件一章節。

2.onblur事件可以參閱javascript blur 事件一章節。

相關文章