當元素失去焦點時,將發生HTML DOM onfocusout事件。 onfocusout與onblur相同,唯一的區別是onblur事件不會冒泡。
如果要確定某個元素或其子元素是否失去焦點,則應使用onfocusout事件。
onfocusin事件與onfocusout事件相反。
注意:Firefox不支持onfocusout事件,但是在捕獲偵聽器的幫助下,您可以確定元素的子代是否失去焦點。
用法:
在HTML中:
<element onfocusout="myScript">
在JavaScript中(可能無法在Chrome,Safari和Opera 15+中正常運行):
object.onfocusout = function(){myScript};
在JavaScript中,使用addEventListener()方法:
object.addEventListener("focusout", myScript);
例:使用HTML
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>HTML DOM onfocusout event </h2> Email:
<input type="email" id="email" onfocusout="gfgFun()">
<script>
function gfgFun() {
var x = document.getElementById("email");
alert("Focus out");
}
</script>
</center>
</body>
</html>
輸出:
例:使用JavaScript
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>HTML DOM onfocusout event </h2> Email:
<input type="email" id="email">
<script>
document.getElementById(
"email").onfocusout = function() {
gfgFun()
};
function gfgFun() {
alert("Focus out");
}
</script>
</center>
</body>
</html>
輸出:
例:使用addEventListener()方法:
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>HTML DOM onfocusout event </h2>
Email:<input type="email" id="email">
<script>
document.getElementById(
"email").addEventListener("focusout", gfgFun);
function gfgFun() {
alert("Input field lost focus.");
}
</script>
</center>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML DOM onfocusout事件支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox 52.0
- 蘋果Safari
- Opera
相關用法
- HTML onbeforeprint事件用法及代碼示例
- HTML onseeking事件用法及代碼示例
- HTML oncanplay事件用法及代碼示例
- HTML onblur事件用法及代碼示例
- HTML onbeforeunload事件用法及代碼示例
- HTML onerror事件用法及代碼示例
- HTML fullscreenchange事件用法及代碼示例
- HTML onfocusin事件用法及代碼示例
- HTML oncopy事件用法及代碼示例
- HTML onresize事件用法及代碼示例
- HTML onreset事件用法及代碼示例
- HTML onscroll事件用法及代碼示例
- HTML onratechange事件用法及代碼示例
- HTML onclick事件用法及代碼示例
- HTML onseeked事件用法及代碼示例
注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | DOM onfocusout Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。