<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#btn1").click(function(){
$("#test1").text(function(i, origText){
return "Old text: " + origText + " New text: Hello world! (index: " + i + ")";
});
});
$("#btn2").click(function(){
$("#test2").html(function(i, origText){
return "Old html: " + origText + " New html: Hello <b>world!</b> (index: " + i + ")";
});
});
});
</script>
</head>
<body>
<p id="test1">This is a <b>bold</b> paragraph.</p>
<p id="test2">This is another <b>bold</b> paragraph.</p>
<button id="btn1">Show Old/New Text</button>
<button id="btn2">Show Old/New HTML</button>
</body>
</html>
'Dev. Web > JavaScript Jquery' 카테고리의 다른 글
AJAX 내부 리턴 문제(only return false) (0) | 2017.11.17 |
---|---|
[번역] 자바스크립트 피로감을 줄여주기 위한 학습 계획 (0) | 2017.06.18 |
[번역] 자바스크립트 클래스를 정의하는 3가지 방법 (3 ways to define a JavaScript class) (0) | 2017.01.23 |
자바스크립트 이벤트 중단 간단 정리 (0) | 2016.08.28 |
JQuery 예제1 - 탭을 클릭했을 때 포커스를 변경하는 예제 (0) | 2016.08.07 |