當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML onmousemove事件用法及代碼示例


當指針移到元素上時,將發生HTML中的DOM onmousemove事件。

用法:

  • 在HTML中:
    <element onmousemove="myScript">
  • 在JavaScript中:
    object.onmousemove = function(){myScript};
  • 在JavaScript中,使用addEventListener()方法:
    object.addEventListener("mousemove", myScript);

例:使用addEventListener()方法


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM onmousemove Event 
    </title> 
</head> 
  
<body> 
    <center> 
  
        <h1 id="eleID">GeeksforGeeks</h1> 
  
        <p id="demo"></p> 
  
        <script> 
            document.getElementById( 
              "eleID").addEventListener( 
              "mousemove", function(event) { 
                GFGfun(event); 
            }); 
  
            function GFGfun(event) { 
                alert("A computer science portal") 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
移動之前:

移動後:

支持的瀏覽器:下麵列出了DOM onmousemove事件支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | DOM onmousemove Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。