P

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

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

 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,366
PHP 17-04-04 조회 2,867
jQuery 17-04-03 조회 1,779
jQuery 17-04-03 조회 2,303
jQuery 17-04-03 조회 1,864
node.js 17-03-29 조회 3,893
jQuery 17-03-29 조회 2,181
jQuery 17-03-29 조회 2,140
jQuery 17-03-29 조회 2,041
jQuery 17-03-28 조회 2,094
jQuery 17-03-28 조회 2,483
PHP 17-03-28 조회 2,306
PHP 17-03-28 조회 1,912
PHP 17-03-28 조회 2,112
jQuery 17-03-27 조회 3,218
jQuery 17-03-27 조회 1,879
jQuery 17-03-27 조회 1,775
jQuery 17-03-26 조회 2,141
jQuery 17-03-26 조회 2,096
jQuery 17-03-26 조회 2,277
jQuery 17-03-23 조회 2,071
jQuery 17-03-23 조회 2,030
jQuery 17-03-23 조회 2,020
jQuery 17-03-22 조회 2,085
jQuery 17-03-22 조회 2,305
jQuery 17-03-22 조회 1,953
jQuery 17-03-20 조회 2,132
jQuery 17-03-20 조회 2,390
jQuery 17-03-20 조회 1,955
jQuery 17-03-18 조회 2,281