常见鼠标事件类型1
1、click鼠标左键点击
2、mousedown 鼠标按下时触发
3、mouseup 鼠标弹起时触发
4、mousemove (move移动)鼠标在固定的位置一移动就触发移动,就触发
5、mouseenter 鼠标移入触发
6、mouseleave 鼠标移出触发文章来源:https://www.toymoban.com/news/detail-739468.html
代码段:文章来源地址https://www.toymoban.com/news/detail-739468.html
<!DOCTYPE html>
<html lang="cn">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
.div1{
width: 100px;
height: 100px;
background: #FFFFCC;
margin: 50px auto;
}
.div2{
width: 500px;
height: 500px;
background: #FFFFCC;
margin: 50px auto;
}
</style>
<body>
<div class="div1">盒子1</div>
<div class="div2">盒子2</div>
<script>
// 获取元素节点
let div1 =document.querySelector('.div1')
//mousedown 鼠标按下时触发
div1.onmousedown=function(){
div1.style.backgroundColor='#CCFFFF'
}
//mouseup 鼠标弹起时触发
div1.onmouseup = function () {
div1.style.backgroundColor = '#FFCCCC'
}
// 获取元素节点
let div2 = document.querySelector('.div2')
// mouseenter 鼠标移入触发
div2.onmouseenter = function(){
div2.style.backgroundColor = 'red'
}
// mouseleave 鼠标移出触发
div2.onmouseleave = function () {
div2.style.backgroundColor = '#99CC66'
}
// mousemove (move移动)鼠标在固定的位置一移动就触发移动,就触发
/*
控制台查看
pageX和pageY: 光标相对于整个文档左上角的坐标位置(整个网页)
语法: e.pageX
offsetX和 offsetY: 光标相对于触发事件的元素左上角的坐标点(当前盒子)
语法: var x = e.offs.etX
*/
div2.onmousemove = function () {
console.log('移动');
}
</script>
</body>
</html>
到了这里,关于JavaScript 常见鼠标事件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!