본문 바로가기

sundries

3-13 text() 노드

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<script src ="../js/jquery-3.2.1.js"></script>

</head>

 <!--

  태그와 태그 사이에 있는 값을 가져온다 

 -->

 

<script>

/*

text() 메서드 : 문서 객체 내부의 글자와 관련된 기능을 수행

1. $(selector).text();

- 선택자의 텍스트 노드의 값을 가져옴

2. $(selector).text(value);

- 선택자의 텍스트 노드의 값을 변경

3. $(selector).text(function(index),text{});

- 

*/

$(function(){

var text = $('h1').text('change');

//출력

//첫번 째 문서 객체의 글자를 가져오지 않고 선택자로 선택한 모든 문서 객체의

//글자를 이어서 출력 ;

alert(text);

});

</script>

<body>

<h1>Header-0</h1>

<h1>Header-1</h1>

<h1>Header-2</h1>

</body>

</html>








<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<script src ="../js/jquery-3.2.1.js"></script>

</head>

 <!--

  태그와 태그 사이에 있는 값을 가져온다 

 -->

<script>

/*

text() 메서드 : 문서 객체 내부의 글자와 관련된 기능을 수행

1. $(selector).text();

- 선택자의 텍스트 노드의 값을 가져옴

2. $(selector).text(value);

- 선택자의 텍스트 노드의 값을 변경

3. $(selector).text(function(index),text{});

- 

*/

$(function(){

var text = $('h1').text(function(index,text){

alert('index= '+ index +' , ' +'text= ' + text);

});

});

</script>

<body>

<h1>Header-0</h1>

<h1>Header-1</h1>

<h1>Header-2</h1>

</body>

</html>