定義和用法
onblur 事件會在對象失去焦點時發生。
語法
onblur="SomeJavaScriptCode"
支持的HTML標籤
<a>, <acronym>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <button>, <caption>, <cite>, <dd>, <del>, <dfn>, <div>, <
dl>, <dt>, <
em>, <fieldset>, <
form>, <frame>, <frameset>, <h1> to <h6>, <hr>, <i>, <iframe>, <img>, <input>, <ins>, <
kbd>, <label>, <legend>, <li>, <object>, <ol>, <p>, <pre>, <q>, <samp>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <table>, <tbody>, <td>, <textarea>, <tfoot>, <th>, <thead>, <
tr>, <tt>, <
ul>, <var>
支持的JS對象
button, checkbox, fileUpload, layer, frame, password, radio, reset, submit, text, textarea, window
onblur 事件參數
onblur 事件具有下表中的參數:
參數 | 描述 |
---|
SomeJavaScriptCode | 必需。規定該事件發生時執行的 JavaScript。 |
實例
本例實現的功能是:當文本輸入框失去焦點(即在文本框中的游標閃動時,用滑鼠單擊網頁中別的地方,或使用Tab鍵切換焦點所引發的事件)時,文本輸入框中的每一個英文字母都將被轉換成大寫字母。
<html> <head> <script type="text/javascript"> function upperCase(){ var x=document.getElementById("fname").value; document.getElementById("fname").value=x.toUpperCase(); } </script> </head> <body> 輸入您的姓名:<input type="text" id="fname" onblur="upperCase();" /> </body></html>