toggleClass用法、用样式做选择器

toggleClass(class) 如果存在(不存在)就删除(添加)一个类。 Adds the specified class if it is not present, removes the specified class if it is present. 返回值 jQuery 参数 class (String) :CSS类名 示例 为匹配的元素切换 ’selected’ 类 HTML 代码: Html代码 1.

Hello

Hello Again

Hello

Hello Again

jQuery 代码: Jscript代码 1. $("p").toggleClass("selected"); $("p").toggleClass("selected"); 结果: Html代码 1.

Hello

,

Hello Again

Hello

,

Hello Again

[

Hello

,

Hello Again

]

 

$(".open1").attr('class', "close1"); //改变样式 $(this).removeClass('bgodd')//移除样式 $('.tableColor tbody tr:nth-child(4n+1)').addClass('odd') 增加样式

你可能感兴趣的:(JavaScript)