제이쿼리 .add (selector)
제이쿼리 .add (selector)
설명 : 요소가 일치하는 요소 집합에 추가 된 새 jQuery 객체를 만듭니다.
1. tag 엘리먼트나 html tag를 직접 넣을 수 있습니다.
<div id="d1"></div>
div에 p태그를 넣고 싶다면
$("#d1").add("p");
이렇게 하면 p태그를 삽입할 수 있습니다.
또한
$("#d1").add("<p>~~~</p>");
이렇게 해도 됩니다.
예 :
모든 div를 찾고 테두리를 만듭니다. 그런 다음 모든 단락을 jQuery 객체에 추가하여 배경을 노란색으로 설정합니다.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>add demo</title>
<style>
div {
width: 60px;
height: 60px;
margin: 10px;
float: left;
}
p {
clear: left;
font-weight: bold;
font-size: 16px;
color: blue;
margin: 0 10px;
padding: 2px;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<p>Added this... (notice no border)</p>
<script>
$( "div" ).css( "border", "2px solid red" )
.add( "p" )
.css( "background", "yellow" );
</script>
</body>
</html>
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4736 | jQuery | 8년 전 | 1559 | ||
| 4735 | jQuery | 8년 전 | 1746 | ||
| 4734 | jQuery | 8년 전 | 1736 | ||
| 4733 | jQuery | 8년 전 | 2032 | ||
| 4732 | jQuery | 8년 전 | 1955 | ||
| 4731 | jQuery | 8년 전 | 1459 | ||
| 4730 | jQuery | 8년 전 | 1917 | ||
| 4729 | PHP |
|
8년 전 | 6898 | |
| 4728 | jQuery | 8년 전 | 2562 | ||
| 4727 | jQuery | 8년 전 | 1610 | ||
| 4726 | jQuery | 8년 전 | 1689 | ||
| 4725 | jQuery | 8년 전 | 1834 | ||
| 4724 | jQuery | 8년 전 | 1310 | ||
| 4723 | jQuery | 8년 전 | 1861 | ||
| 4722 | jQuery | 8년 전 | 1625 | ||
| 4721 | jQuery | 8년 전 | 1917 | ||
| 4720 | jQuery | 8년 전 | 1974 | ||
| 4719 | jQuery | 8년 전 | 1601 | ||
| 4718 | jQuery | 8년 전 | 1607 | ||
| 4717 | jQuery | 8년 전 | 1558 | ||
| 4716 | jQuery | 8년 전 | 1236 | ||
| 4715 | jQuery | 8년 전 | 1393 | ||
| 4714 | jQuery | 8년 전 | 1415 | ||
| 4713 | jQuery | 8년 전 | 1333 | ||
| 4712 | jQuery | 8년 전 | 2226 | ||
| 4711 | jQuery | 8년 전 | 1709 | ||
| 4710 | PHP |
|
8년 전 | 3747 | |
| 4709 | jQuery | 8년 전 | 1629 | ||
| 4708 | jQuery | 8년 전 | 1908 | ||
| 4707 | jQuery | 8년 전 | 1760 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기