码迷,mamicode.com
首页 > Web开发 > 详细

jquery——事件

时间:2018-06-20 21:29:23      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:nbsp   java   div   code   class   事件   toggle   round   lang   

1.click事件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>click事件</title>
    <script type="text/javascript" src="jquery-1.12.4.min.js"></script>
    <script type="text/javascript">
        $(function () {

            $(‘#btn‘).click(function () {
                //重复切换sty样式
                $(‘.box‘).toggleClass(‘sty‘);
            });
        })
        
    </script>
    <style type="text/css">
        .box{
            width:200px;
            height:200px;
            background-color: hotpink;
        }

        .sty{
            background-color: chartreuse;
        }
        
    </style>
</head>
<body>
    <input type="button" name="" value="切换" id="btn">
    <div class="box"></div>
</body>
</html>

 

jquery——事件

标签:nbsp   java   div   code   class   事件   toggle   round   lang   

原文地址:https://www.cnblogs.com/gaoquanquan/p/9205150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!