讲解一样toggleClass( [switch ] )和toggleClass( function(index, class, switch) [, switch ] )具体用法与功能。
最好有例子可以讲解,谢谢大佬们了!
//第二个参数判断样式类是否应该被添加或删除 //true,那么这个样式类将被添加; //false,那么这个样式类将被移除 //所有的奇数tr元素,应该都保留class="c"样式 $("#table tr:even").toggleClass("c", true);