jQuery addclass()方法用于给选择的元素添加一个或者多个类名class。如果是添加多个类,用空格分隔多个类名。

语法

$(selector).addClass(classname,function(index,oldclass)) 

参数

参数说明
classname为必填参数。它指定您要添加的一个或多个类名。
function (index, currentclass)

它是一个可选参数。它指定一个函数,该函数返回一个或多个要添加的类名。

index:用于提供集合中元素的索引位置; 

currentclass:用于返回被选元素的当前类名。

例子

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("p:first").addClass("intro");
    });
});
</script>
<style>
.intro {
    font-size: 200%;
    color: red;
}
</style>
</head>
<body>
<h1>这是一个标题</h1>
<p>这是第一个段落.</p>
<p>这是第二个短落.</p>
<button>给第一个p元素添加类名</button>
</body>

</html>

效果

jQuery addClass() 方法