jQuery removeClass() 方法
jQuery 教程
· 2019-03-27 17:44:04
实例
从所有的 <p> 元素移除 "intro" 类:
$("button").click(function(){
$("p").removeClass("intro");
});
定义和用法
removeClass() 方法从被选元素移除一个或多个类。
注意:如果没有规定参数,则该方法将从被选元素中删除所有类。
语法
$(selector).removeClass(classname,function(index,currentclass))
参数 | 描述 |
---|---|
classname | 可选。规定要移除的一个或多个类名称。如需移除若干个类,请使用空格分隔类名称。 注意: 如果该参数为空,则将移除所有类名称。 |
function(index,currentclass) | 可选。返回要移除的一个或多个类名称的函数。
|
点击查看所有 jQuery 教程 文章: https://www.codercto.com/courses/l/35.html
Head First JavaScript Programming
Eric T. Freeman、Elisabeth Robson / O'Reilly Media / 2014-4-10 / USD 49.99
This brain-friendly guide teaches you everything from JavaScript language fundamentals to advanced topics, including objects, functions, and the browser’s document object model. You won’t just be read......一起来看看 《Head First JavaScript Programming》 这本书的介绍吧!