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://codercto.com/courses/l/35.html
Web Design DeMYSTiFieD
Willard, Wendy / 2010-11 / $ 24.86
Website Design just got a whole lot easier! This title helps you to learn the latest website development tools, techniques, and best practices. "Web Design Demystified" provides the hands-on help you ......一起来看看 《Web Design DeMYSTiFieD》 这本书的介绍吧!