반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- string
- json
- windows
- 자바
- vscode
- Button
- 문자열
- 이클립스
- 자바스크립트
- 이탈리아
- list
- 인텔리제이
- table
- input
- Array
- html
- Visual Studio Code
- Maven
- ArrayList
- date
- CMD
- 배열
- Files
- Java
- 테이블
- CSS
- js
- javascript
- Eclipse
- IntelliJ
Archives
- Today
- Total
어제 오늘 내일
[jQuery] div 안의 텍스트 변경 text(), html() 본문
jQuery를 이용하여
div 안의 텍스트를 변경하려면 다음 2가지 방법을 사용할 수 있습니다.
- text()
- html()
1. text()
요소 안의 텍스트를 변경합니다.
html 코드를 전달하여도, text로 인식되어 그대로 출력합니다.
<div id="myDiv1"></div>
<div id="myDiv2"></div>
$('#myDiv1').text('hello');
$('#myDiv2').text('<button>버튼</button>');
$('#myDiv1').text('hello');
파라미터로 전달된 텍스트가 그대로 화면에 출력되었습니다.
$('#myDiv1').text('<button>버튼</button>');
html 태그를 넣어도 태그가 그대로 화면에 출력됩니다.
2. html()
요소 안의 html을 변경합니다.
파라미터로 html 코드를 전달하면, html 코드가 실행됩니다.
<div id="myDiv1"></div>
<div id="myDiv2"></div>
$('#myDiv1').html('hello');
$('#myDiv2').html('<button>버튼</button>');
$('#myDiv1').html('hello');
텍스트를 파라미터로 전달하면 텍스트가 그대로 출력됩니다.
$('#myDiv1').html('<button>버튼</button>');
파라미터로 html 태그를 전달하였습니다.
html 태그가 텍스트로 추가되는 것이 아니라, html로 추가되어 실행됩니다.
반응형
'IT > jQuery' 카테고리의 다른 글
[jQuery] div 높이 너비 구하기 (height(), width()) (0) | 2024.01.01 |
---|---|
[jQuery] div 안의 text 가져오기 (text()) (0) | 2023.12.31 |
[jQuery] 클래스 값 가져오기 (attr) (0) | 2023.12.29 |
[jQuery] 특정 class를 가지는 요소 갯수 구하기 (length) (0) | 2023.12.28 |
[jQuery] 클래스 추가, 삭제, 토글 (0) | 2023.12.27 |
Comments