HTML DOM 快速導覽 - 元素的事件處理屬性 onblur

如果網頁有文字輸入區域,例如 <textarea> 或 <input> 元素 (element) ,該元素在失去使用者的焦點之時,就會觸發 onBlur 事件,相關的事件處理可以指定在 onblur 屬性 (attribute) 中。



舉例如下
function run() {
    var s = document.getElementById("show");
    s.innerHTML = "loses focus!";
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:event018.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


如果元素失去使用者的焦點,網頁會在 id 屬性為 show 的元素中印出提示訊息 loses focus!
var s = document.getElementById("show");
s.innerHTML = "loses focus!";


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="event018.js" type="text/javascript"></script>
</head>
<body>
<textarea onblur="run();">There is no spoon.</textarea>
<div id="show"></div>
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:event018.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


其中的 <textarea> 元素設置 onblur 屬性,當失去使用者焦點之時,就會執行 run()
<textarea onblur="run();">There is no spoon.</textarea>


瀏覽器 (broswer) 開啟網頁檔案,文字輸入區域有一句英文 There is no spoon.



點擊該文字輸入區,使文字輸入區成為使用者焦點



隨意點擊網頁其他地方,原本的文字輸入區失去使用者焦點,此時網頁印出提示訊息 loses focus!



中英文術語對照
元素element
屬性element
瀏覽器broswer


您可以繼續參考
HTML 元素的事件處理屬性


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/element.onpaste
https://developer.mozilla.org/en/DOM/element.onblur

沒有留言: