onfocus

onfocus

onfocus屬於JavaScriptHTML DOM Event對象 中的一個事件,onfocus 事件在對象獲得焦點游標)時發生。

基本介紹

  • 中文名:onfocus
  • 外文名:onfocus
語法:,參數:,實例,代碼,圖示,

語法:

onfocus="SomeJavaScriptCode"

參數:

在onfocus事件發生時,"SomeJavaScriptCode"是必需執行的JavaScript

實例

在本例中,當輸入框獲得焦點(游標)時,其背景顏色將改變:

代碼

<html><head><script type="text/javascript">function setStyle(x){document.getElementById(x).style.background="yellow"}</script></head><body>First name: <input type="text" onfocus="setStyle(this.id)" id="fname"><br />Last name: <input type="text" onfocus="setStyle(this.id)" id="lname"></body></html>

圖示

對象未獲得焦點(游標)時,文本框的狀態。對象未獲得焦點(游標)時,文本框的狀態。
對象獲得焦點(游標)時,文本框的狀態。對象獲得焦點(游標)時,文本框的狀態。

相關詞條

熱門詞條

聯絡我們