DOCTYPE html> Insert title here $(document).ready(function () { // html() - 자바스크립트의 innerHTML과 기능이 동일 // text() var h = $('h1').html(); //alert(h); var t = $('h1').text(); //alert(t); //$('div').text('text Method'); //$('div').html('html Method'); // 배열형태로 하나씩 접근 // $('div').html(function (index) { // return 'html Method - ' + index + ''; // }); $('h1').html(function (index, oldHtml) { return '★..