码迷,mamicode.com
首页 > 其他好文 > 详细

zepto - toggleClass

时间:2014-12-16 19:11:08      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   io   color   os   sp   on   div   

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>zepto</title>
    <style>
        .main {
            font-size: 120%;
            color: red;
        }
    </style>
</head>
<body>
<h1 id="h1">This is a heading</h1>

<p>This is a paragraph.</p>

<p>This is another paragraph.</p>
<button class="btn1">切换段落的 "main" 类</button>
<script src="zepto.min.js"></script>
<script>
    $("button").click(function () {
        $("p").toggleClass("main");
    });
</script>
</body>
</html>

 

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>zepto</title>
    <style>
        .listitem_1, .listitem_3 {
            color: red;
        }

        .listitem_0, .listitem_2 {
            color: blue;
        }
    </style>
</head>
<body>
<h1 id="h1">This is a heading</h1>
<ul>
    <li>Apple</li>
    <li>IBM</li>
    <li>Microsoft</li>
    <li>Google</li>
</ul>
<button class="btn1">添加或移除列表项的类</button>
<script src="zepto.min.js"></script>
<script>
    $("button").click(function () {
        $(ul li).toggleClass(function () {
            return listitem_ + $(this).index();
        });
    });
</script>
</body>
</html>

 

zepto - toggleClass

标签:style   blog   ar   io   color   os   sp   on   div   

原文地址:http://www.cnblogs.com/qzsonline/p/4167734.html

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