티스토리 뷰
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript">
//window.onload와 같은 기능
$(document).ready(function(){
//클래스접근
var x = $(".kkk"); // 모든 kkk 클래스
console.log(x);
var x2 = $("p.kkk"); //and p태그다뽑고 kkk다뽑고 교집합
console.log(x2);
});
</script>
</head>
<body>
<p class="kkk">xxxxxxxxxxxx</p>
<p>xxxxxxxxxxxx</p>
<a href="#" class="kkk">aaa</a>
<a href="#" id="xyz">bbb</a>
<a href="#" id="xyz2">ccc</a>
<a href="#" class="kkk">ddd</a>
</body>
</html>
'It' 카테고리의 다른 글
노화의과정 (0) | 2023.03.30 |
---|---|
피부의노화 (0) | 2023.03.29 |
JSP 날짜 시간 출력하기 (0) | 2023.03.28 |
토익 영어 주어와 동사 (0) | 2023.03.27 |
프로그램 구조도 소프트웨어공학 (0) | 2023.03.27 |
댓글
Blog is powered by
Tistory / Designed by
Tistory