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

jquery中 toggleClass方法的一种用法

时间:2014-10-03 01:53:33      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   java   sp   div   c   on   

<html>
<head>
<script src="js/jquery.js" type="text/javascript"></script>  
</head>
<body>
<style>
.list_1{color:red}
.list_2{color:green}
.list_3{color:blue}
.list_4{color:#666}
</style>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>

<button class="b1">方式一提交</button>
<button class="b2">方式二提交</button>

<script>
$(document).ready(function () {
    $(".b1").click(function () {
        $(ul li).toggleClass(function () {
             return list_ + $(this).index();
        });
    });
    
    $(".b2").click(function () {
        $(ul li).toggleClass(function (index) {
            return list_ + index;
        });
    });
})
</script> 
<body>
</html>

两种方式效果一致。

$(selector).toggleClass(function(index,class),switch)  其中index可选,接受选择器的位置。

jquery index()  方法返回指定元素相对于其他指定元素的 index 位置。

jquery中 toggleClass方法的一种用法

标签:style   blog   color   io   java   sp   div   c   on   

原文地址:http://www.cnblogs.com/bigdesign/p/4004559.html

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