P

jQuery w3schools 한글판 강좌44 -Get Content - text(), html(), and val()

· 2017-03-26 (일) 00:32:12 · 2099

 jQuery w3schools 한글판 강좌44 -Get Content - text(), html(), 그리고 val()

 

DOM조작을 위한 세가지 간단하지만 유용한 jQuery메소드들은 다음과 같습니다:

  • text() - 선택된 요소들의 텍스트 컨텐트를 설정하거나 반환합니다
  • html() - 선택된 요소들(HTML 마크업(markup)을 포함)의 컨텐트를 설정하거나 반환해줍니다.
  • val() - 폼 필드들의 값을 설정 또는 반환해줍니다

다음 예는 text()와 html() jQuery메소드를 이용하여 컨텐트를 취하는 방법을 보여줍니다:

Example

$("#btn1").click(function(){
    alert("Text: " + $("#test").text());
});
$("#btn2").click(function(){
    alert("HTML: " + $("#test").html());
});

 

다음 예는 val()메소드를 이용하여 input 필드의 값을 얻어내는 방법을 시연해줍니다:

Example

$("#btn1").click(function(){
    alert("Value: " + $("#test").val());
});

 



|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 17-04-04 조회 2,369
PHP 17-04-04 조회 2,870
jQuery 17-04-03 조회 1,780
jQuery 17-04-03 조회 2,305
jQuery 17-04-03 조회 1,868
node.js 17-03-29 조회 3,896
jQuery 17-03-29 조회 2,185
jQuery 17-03-29 조회 2,145
jQuery 17-03-29 조회 2,045
jQuery 17-03-28 조회 2,101
jQuery 17-03-28 조회 2,486
PHP 17-03-28 조회 2,308
PHP 17-03-28 조회 1,915
PHP 17-03-28 조회 2,114
jQuery 17-03-27 조회 3,219
jQuery 17-03-27 조회 1,883
jQuery 17-03-27 조회 1,775
jQuery 17-03-26 조회 2,144
jQuery 17-03-26 조회 2,100
jQuery 17-03-26 조회 2,279
jQuery 17-03-23 조회 2,072
jQuery 17-03-23 조회 2,033
jQuery 17-03-23 조회 2,022
jQuery 17-03-22 조회 2,091
jQuery 17-03-22 조회 2,305
jQuery 17-03-22 조회 1,954
jQuery 17-03-20 조회 2,136
jQuery 17-03-20 조회 2,391
jQuery 17-03-20 조회 1,959
jQuery 17-03-18 조회 2,284