728x90
300x250
SMALL
태그 내용 가져오기
$대상.html()
$대상.text()
태그 내용을 가져오는 방법은 html() 메서드를 이용하거나 text()메서드를 이용할 수 있다.
html() : 태그 메서드 까지 가져올 경우
text() : 텍스트만 추출할 경우
html()
<script>
$(document).ready(function() {
$("#btnAdd").click(function() {
console.log($(".list").html());
})
});
</script>
<button id="btnAdd">
리스트 내용 가져오기
</button>
<ul class="list">
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
</ul>
실행결과
text()
<script>
$(document).ready(function() {
$("#btnAdd").click(function() {
console.log($(".list").text());
})
});
</script>
<button id="btnAdd">
리스트 내용 가져오기
</button>
<ul class="list">
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
</ul>
실행결과
728x90
반응형
LIST
'javaScript > jQuery' 카테고리의 다른 글
[jQuery] 리스트 요소 여러개 한번에 추가 하기 append() html() 차이 (0) | 2023.01.31 |
---|---|
[jQuery] 태그 내용 수정하기 html() text() (0) | 2023.01.30 |
[jQuery] 요소 삭제 remove() (0) | 2023.01.28 |
[jQuery]요소 이동 append(), appendTo(), insertAfter(), after(), insertBefore(), before() (0) | 2023.01.27 |
[jQuery]특정 노드 다음에 요소 추가 insertAfter() after() (0) | 2023.01.26 |
댓글