jQuery-鼠标事件

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        #box {
            width: 300px;
            height: 300px;
            margin: 80px auto 0;
            background-color: blue;
            border: 1px solid #666;
        }
    </style>
</head>
<body>

    
    <div id="box"></div>
    

    <script src="./jquery.js"></script>
    <script>
        // 鼠标事件
        $('#box').mousedown(function (event) {

            console.log(event.type)
            console.log(event)

        }).mouseup(function (event) {

            console.log(event.type)

        }).click(function (event) {

            console.log(event.type)
            
        }).dblclick(function (event) {

            console.log(event.type)
            
        }).mouseenter(function (event) {
            // 鼠标刚刚进入元素时触发
            console.log(event.type)
        }).mouseover(function (event) {
            // 鼠标移动到元素上时触发
            console.log(event.type)
        }).mousemove(function(event) {
            // 鼠标在元素上移动时触发
            console.log(event.type)
        }).mouseout(function (event) {
            // 鼠标刚刚移出元素时触发
            console.log(event.type)
        }).mouseleave(function (event) {
            // 鼠标已经离开元素时触发
            console.log(event.type)
        });

        // 使用 JS 实现 hover 效果:
        // $('#box').mouseenter(function () {
        //     $(this).css('background-color', 'red')
        // }).mouseleave(function() {
        //     $(this).css('background-color', 'blue')
        // });

        // jQ 考虑到我们可能要经常使用 JS 实现 hover 效果,因此为我们提供一个简便方法,该方法实际上是 mouseenter 和 mouseleave 事件的组合。
        $('#box').hover(function (event) {
            console.log(event.type)  // mouseenter
            $(this).css('background-color', 'red')
        }, function (event) {
            console.log(event.type)  // mouseleave
            $(this).css('background-color', 'blue')
        })

    </script>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值