📜  获取悬停元素 js - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:13.749000             🧑  作者: Mango

代码示例2
let test = document.getElementById("test");
  
// This handler will be executed only once when the cursor
// moves over the unordered list
test.addEventListener("mouseenter", function( event ) {   
  // highlight the mouseenter target
  event.target.style.color = "purple";

  // reset the color after a short delay
  setTimeout(function() {
    event.target.style.color = "";
  }, 500);
}, false);