$(selector).addClass(classname,function(index,oldclass))
参数 | 说明 |
classname | 这是必填参数。它指定您要添加的一个或多个类名。 |
function(index,oldclass) | 这是一个可选参数。它指定一个返回一个或多个要添加的类名称的函数。 索引:用于提供元素在集合中的索引位置。 Currentclass:用于返回所选元素的当前类名称。 |
<!DOCTYPE html>
<html>
<head>
<script src="/ajax/libs/jquery/1.11.3/jquery.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>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Add a class name to the first p element</button>
</body>
</html>
This is a heading
This is a paragraph.
This is another paragraph.