zoukankan      html  css  js  c++  java
  • jquery鼠标点击事件,改变背景色

    <!DOCTYPE html>
    <html lang="en">
    <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>
        <script src="jquery-3.6.0.js"></script>
        <style>
            .paging li{
                60px;
                height:40px;
                line-height:40px;
                float: left;
                text-align:center;
                list-style: none;
            }
        </style>
        <script>
           $(function(){
            //    初始化div 绑定事件
            var initDiv=function(){
                $(".paging li").css("background","");
                $(".paging li").mouseover(function(){
                    $("this").css("background","green")            
            })
                $(".paging li").mouseout(function(){
                     $("this").css("background","")  
                })
           };
           initDiv();
            $(".paging li").click(function(){
                initDiv();
                // 当前被点击的div改变背景色
                $(this).css("background","green");
                // 取消当前div的mouseout和mouseover事件
                $(this).unbind("mouseout")
                $(this).unbind("mouseover")
            })
        })
           
        </script>
    </head>
    <body>
        <ul class="paging">
            <li><<</li>
            <li>1</li>
            <li>2</li>
            <li>3</li>
            <li>4</li>
            <li>5</li>
            <li>>></li>
        </ul>
    </body>
    </html>
  • 相关阅读:
    MVC 路由规则
    MVC系统过滤器、自定义过滤器
    MVC部署
    MVC 读书笔记
    C# 调用 Web Service
    RESTful 架构
    WebSocket C# Demo
    C# 编写服务 Windows service
    C# 调用FFmpeg 根据图片合成视频
    Socket 编程示例(二)
  • 原文地址:https://www.cnblogs.com/hr-7/p/14690393.html
Copyright © 2011-2022 走看看