일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- html
- error
- 개발자
- M480
- iTunes
- 오라클
- 한글
- 2NE1
- SELECT UPDATE
- oracle not in
- 링크
- 다운로드
- input box
- update
- 이클립스
- 태그를 입력해 주세요.
- Modeling
- 미라지
- Oracle
- 검색
- jqeury
- oracle not exists
- Download
- 10g
- DATABASE
- java
- 설치
- javascript
- eclipse
- jquery
- Today
- Total
not set
jQuery html(), text() 본문
<!doctype html>
<html>
<head>
<title>jquery test</title>
<script src="http://code.jquery.com/jquery-1.7.js"></script>
</head>
<body>
<script>
$(document).ready(function () {
// 변수 선언
var html = $('h1').html();
// 출력
alert(html);
});
</script>
<h1>Header-0</h1>
<h1>Header-1</h1>
<h1>Header-2</h1>
</body>
</html>
<!doctype html>
<html>
<head>
<title>jquery test</title>
<script src="http://code.jquery.com/jquery-1.7.js"></script>
</head>
<body>
<script>
$(document).ready(function () {
// 변수 선언
var text = $('h1').text();
// 출력
alert(text);
});
</script>
<h1>Header-0</h1>
<h1>Header-1</h1>
<h1>Header-2</h1>
</body>
</html>
위의 2가지 예제의 차이점을 무엇일까.
1번 html() 을 썼을땐
"Header-0" 이라는 alert 창이 나오는 반면에
2번 text() 를 썼을때는
"Header-0Header-1Header-2" 이렇게 문서 객체의 글자가 이어서 출력된다.
attr(), css(), html() 은 모두 하나만 출력되지만 text() 는 이어서 출력되는걸 명심!!
■ 문서객체의 내부 추가
1. $(selector).html(value);
$(selector).text(value);
2. $(selector).html(function(index, html) {});
$(selector).text(function(index, html) {});
<!doctype html>
<html>
<head>
<title>jquery test</title>
<script src="http://code.jquery.com/jquery-1.7.js"></script>
</head>
<body>
<script>
$(document).ready(function () {
$('div').html('<h1>$().html() Method</h1>');
});
</script>
<div></div>
<div></div>
<div></div>
</body>
</html>
본문 출처 : 모던 웹을 위한 Javascript 입문 및 jQuery입문
'javascript > jQuery' 카테고리의 다른 글
Jquery Ajax 정리 (0) | 2013.08.19 |
---|---|
jQuery 문서 객체의 생성 (0) | 2012.02.03 |
jQuery 문서 객체의 스타일 (0) | 2012.02.03 |
jQuery 객체 클래스 속성추가(addClass), 제거(removeClass), 속성검사(attr), 제거(removeAttr(name)) (0) | 2012.02.02 |
jQuery find() (0) | 2012.01.31 |