메인코드:
- 이미지 바꾸기 : $("#아이디값").attr("src", 이미지URL);
- 텍스트 바꾸기 : $("#아이디값").text("바꾸고 싶은 텍스트");
르탄이 나와 버튼을 누를때 마다 이미지와 텍스트가 랜덤으로 변함
완성코드
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>JQuery 연습하고 가기!</title>
<!-- JQuery를 import 합니다 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<style type="text/css">
div.question-box {
margin: 10px 0 20px 0;
}
div.question-box > div {
margin-top: 30px;
}
</style>
<script>
function q1() {
$.ajax({
type: "GET",
url: "http://spartacodingclub.shop/sparta_api/rtan",
data: {},
success: function(response){
let imgurl=response['url'];
$("#img-rtan").attr("src", imgurl);
let text=response['msg'];
$("#text-rtan").text(text);
}
})
}
</script>
</head>
<body>
<h1>JQuery+Ajax의 조합을 연습하자!</h1>
<hr/>
<div class="question-box">
<h2>3. 르탄이 API를 이용하기!</h2>
<p>아래를 르탄이 사진으로 바꿔주세요</p>
<p>업데이트 버튼을 누를 때마다 지웠다 새로 씌여져야 합니다.</p>
<button onclick="q1()">르탄이 나와</button>
<div>
<img id="img-rtan" width="300" src="http://spartacodingclub.shop/static/images/rtans/SpartaIcon11.png"/>
<h1 id="text-rtan">나는 ㅇㅇㅇ하는 르탄이!</h1>
</div>
</div>
</body>
</html>
'스파르타 코딩 웹개발 종합반 > 2주차' 카테고리의 다른 글
2-11 2주차 마무리 연습_웹페이지를 로딩할때 날씨 API를 이용해서 날씨표시 (0) | 2022.05.14 |
---|---|
2-9 Quiz_Ajax 연습하기_ OpenAPI이용 (서울따릉이 현황) (0) | 2022.05.14 |
2-8 Ajax 연습 _ jQuery + Ajax 조합 (+ if 조건문) (0) | 2022.05.14 |
2-7 Ajax 시작하기 (0) | 2022.05.14 |
2-6 서버-클라이언트 통신 이해하기 _ JSON / JSONView /API (0) | 2022.05.14 |