JavaScript mouseout 事件

admin發表於2019-02-21

當滑鼠指標離開指定元素時觸發mouseout 事件,事件名稱也體現了其功能。

此事件與mouseover事件相對應,一個是指標離開元素時觸發,一個是指標進入元素時觸發。

不僅mouseout事件可以表示滑鼠指標離開指定元素,mouseleave事件也可以,當然兩者是有區別的。

本文專注於介紹mouseout事件,其他相關知識可以參閱如下兩篇文章:

(1).JavaScript mouseover 事件一章節。

(2).mouseout與mouseleave區別一章節。

(3).JavaScript 註冊事件處理函式一章節。

首先羅列出mouseout事件的幾個主要特點,最後再通過程式碼例項一一演示:

(1).事件支援冒泡現象。

(2).當滑鼠指標從子元素移出時,事件觸發,這其實是事件冒泡的體現。

(3).當滑鼠指標從父元素移入子元素時事件觸發。

(4).對於設定為disabled不可用的表單元素有效,有一定瀏覽器相容性問題,edge不支援。

瀏覽器支援:

(1).IE瀏覽器支援此事件。

(2).edge瀏覽器支援此事件。

(3).火狐瀏覽器支援此事件。

(4).Opera瀏覽器支援此事件。

(5).谷歌瀏覽器支援此事件。

(6).safria瀏覽器支援此事件。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
div{
    width:150px;
    height:60px;
    line-height:60px;
    text-align: center;
    background-color: #ccc;
    margin:60px;
}
</style>
<script>
window.onload=function(){
    let odiv=document.querySelector("div");
    odiv.onmouseout=function(){
        this.innerHTML="螞蟻部落";
    }
}
</script>  
</head>
<body> 
  <div></div>
</body>
</html>

上述程式碼很簡單,當滑鼠從div中移出觸發mouseout事件,將指定字串寫入其中。

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#outer{
    width:150px;
    height:100px;
    background-color: green;
    margin:60px;
    position: relative;
}
#inner{
    width:75px;
    height:50px;
    text-align: center;
    line-height: 50px;
    background-color: #ccc;
    margin:30px;
    position:absolute;
    left:120px;
}
</style>
<script>
window.onload=function(){
    let outer=document.querySelector("#outer");
    let inner=document.querySelector("#inner");
    outer.onmouseout=function(){
        inner.innerHTML="螞蟻部落";
    }
}
</script>  
</head>
<body> 
  <div id="outer">
      <div id="inner"></div>
  </div>
</body>
</html>

當滑鼠從子元素inner移出的時候效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/201902/21/005921lh0wsl04qgyxxnpb.png\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

程式碼分析如下:

(1).inner是outer的子元素,為了便於觀察,採用定位方式將其移出父元素。

(2).為父元素註冊事件處理函式,子元素本身沒有註冊。

(3).當滑鼠從子元素中移出的時候,由於事件冒泡傳遞到父元素,事件觸發,並將字串寫入div。

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#outer{
    width:150px;
    height:100px;
    background-color: green;
    overflow: hidden;
    margin:60px;
}
#inner{
    width:75px;
    height:50px;
    text-align: center;
    line-height: 50px;
    background-color: #ccc;
    margin:30px;
}
</style>
<script>
window.onload=function(){
    let outer=document.querySelector("#outer");
    let inner=document.querySelector("#inner");
    outer.onmouseout=function(){
        inner.innerHTML="螞蟻部落";
    }
}
</script>  
</head>
<body> 
  <div id="outer">
      <div id="inner"></div>
  </div>
</body>
</html>

我們知道,當滑鼠指標移出整個父元素,觸發mouseout事件是毫無疑問的。

mouseout還有一個特點,那麼就是當滑鼠指標從父元素中移入它的子元素的時候事件也會觸發。

於是,當滑鼠指標從outer元素移入inner元素的時候會觸發mouseout事件,將指定字串寫入。

最後強調一點,此事件在被設定為禁用狀態的表單元素上也是有效的,當前有一定的相容性問題,當然隨著時間的推移,瀏覽器支援度隨時會發生變化,一切以實測為準,由於比較簡單,本文不再舉例演示。

相關文章