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

jQuery之开关灯示例

时间:2017-10-16 18:08:06      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:col   bsp   block   选择   type   back   utf-8   准备   logs   

准备jquery-3.2.1.js文件

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .c11 {
            height: 100px;
            width: 100px;
            border-radius: 50%;
            border: 1px solid #cccccc;
            display: inline-block;
        }

        .c12 {
            background-color: yellow;
        }
    </style>
</head>
<body>

<div class="c11"></div>
<button id="switch" class="btn btn-default">开关</button>
<script src="jquery-3.2.1.js"></script>
<script>
    // id选择器
//    $("#i1")

//    $("#switch")[0].onclick = function () {
//        ....
//    }
//jQuery绑定事件
    $("#switch").on("click", function () {
        // 找灯泡
        $(".c11").toggleClass("c12");
    })

</script>
</body>
</html>

 

jQuery之开关灯示例

标签:col   bsp   block   选择   type   back   utf-8   准备   logs   

原文地址:http://www.cnblogs.com/yifugui/p/7677688.html

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