<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>first demo</title>
<style>
</style>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<ul>
<li class="box1">Hello 1</li>
<li>Hello 2</li>
<li>Hello 3</li>
<li>Hello 4</li>
</ul>
<script>
$( "ul li" ).addClass('selectClass');
</script>
</body>
</html>
.addClass() 메소드는 class를 추가한다.
class가 이미 있을 경우 기존의 class가 삭제되지 않는다.
'JS > jQuery' 카테고리의 다른 글
.first() //제이쿼리(jQuery) (0) | 2020.08.01 |
---|---|
.find() //제이쿼리(jQuery) (0) | 2020.08.01 |