์ค๋์ ์ง๋ | |
---|---|
1~5 | jQuery |
6 | ์๋ฒ-ํด๋ผ์ด์ธํธ ํต์ |
7~10 | aJax |
์์
๋ชฉํ
1. Javascript๋ฌธ๋ฒ์ ์ต์ํด์ง๋ค
2. jQuery๋ก ๊ฐ๋จํ HTML์ ์กฐ์ํ ์ ์๋ค.
3. Ajax๋ก ์๋ฒ API(์ฝ์)์ ๋ฐ์ดํฐ๋ฅผ ์ฃผ๊ณ , ๊ฒฐ๊ณผ๋ฅผ ๋ฐ์์จ๋ค.
โก ๋ค์ ์์ ๋ชฉํ์ ๋ฐ๋ผ ์ ๋ฐ๋ผ๊ฐ๋์ง ๋ค์ ํ๊ณ ํด๋ณผ ์์ ์ด๋ค!
jQuery
- ์๋ฐ์คํฌ๋ฆฝํธ ๋ผ์ด๋ธ๋ฌ๋ฆฌ~
- HTML์์๋ฅผ ์กฐ์ํ๋ ํธ๋ฆฌํ Javascript ๋ฏธ๋ฆฌ ์์ฑํด๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
<head>
์ ์ถ๊ฐ!
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
1. input ๋ฐ์ค ๊ฐ ๊ฐ์ ธ์ค๊ธฐ
$('#url').val() //css์์ class๋ฅผ ์ง์นญํ๋ ๊ฒ์ฒ๋ผ jQuery์์๋ id๋ก ์ง์นญ //์์ $('#url').val('์ ๋ ฅ์ ํ๊ณ ์ถ๋ค')
2. div ๋ณด์ด๊ธฐ / ์จ๊ธฐ๊ธฐ
div๋ถ๋ถ์ id="post-box" ์ง์นญ ํ
์ฝ์์ฐฝ์์
$('#post-box').hide() //์จ๊ธฐ๊ธฐ $('#post-box').show() //๋ํ๋๊ฒ ํ๊ธฐ
3. ํ๊ทธ ๋ด html ์
๋ ฅํ๊ธฐ
์ฝ์์ฐฝ--
--let temp_html = <button> ๋๋ ๋ฒํผ์ด๋ค </button>
//html์ด ์๋ ๊ทธ๋ฅ ๋ฌธ์์ด
//htmlํ ์์ผ์ฃผ๋ jQuery ๊ธฐ๋ฅ ์ฌ์ฉ $('#cards-box').append(temp_html)
<!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;
}
</style>
<script>
function q1() {
// 1. input-q1์ ์
๋ ฅ๊ฐ์ ๊ฐ์ ธ์จ๋ค.
let value = $('#input-q1').val();
// 2. ๋ง์ฝ ์
๋ ฅ๊ฐ์ด ๋น์นธ์ด๋ฉด if(์
๋ ฅ๊ฐ=='')
if (value == '') {
// 3. alert('์
๋ ฅํ์ธ์!') ๋์ฐ๊ธฐ
alert('์
๋ ฅํ์ธ์!');
} else {
// 4. alert(์
๋ ฅ๊ฐ) ๋์ฐ๊ธฐ
alert(value);
}
}
function q2() {
// 1. input-q2 ๊ฐ์ ๊ฐ์ ธ์จ๋ค.
let email = $('#input-q2').val();
// 2. ๋ง์ฝ ๊ฐ์ ธ์จ ๊ฐ์ @๊ฐ ์์ผ๋ฉด (includes ์ด์ฉํ๊ธฐ - ์ฐพ์๋ณด์!)
if (email.includes('@')) {
// 3. info@gmail.com -> gmail ๋ง ์ถ์ถํด์
// 4. alert(๋๋ฉ์ธ ๊ฐ);์ผ๋ก ๋์ฐ๊ธฐ
let domainWithDot = email.split('@')[1];
let onlyDomain = domainWithDot.split('.')[0];
alert(onlyDomain);
} else {
// 5. ๋ง์ฝ ์ด๋ฉ์ผ์ด ์๋๋ฉด '์ด๋ฉ์ผ์ด ์๋๋๋ค.' ๋ผ๋ ์ผ๋ฟ ๋์ฐ๊ธฐ
alert('์ด๋ฉ์ผ์ด ์๋๋๋ค.');
}
}
function q3() {
// 1. input-q3 ๊ฐ์ ๊ฐ์ ธ์จ๋ค.
let newName = $('#input-q3').val();
if (newName == '') {
alert('์ด๋ฆ์ ์
๋ ฅํ์ธ์');
return;
}
// 2. ๊ฐ์ ธ์จ ๊ฐ์ ์ด์ฉํด names-q3์ ๋ถ์ผ ํ๊ทธ๋ฅผ ๋ง๋ ๋ค. (let temp_html = `<li>${๊ฐ์ ธ์จ ๊ฐ}</li>`)
let temp_html = `<li>${newName}</li>`;
// 3. ๋ง๋ค์ด๋ temp_html์ names-q3์ ๋ถ์ธ๋ค.(jQuery์ $('...').append(temp_html)์ ์ด์ฉํ๋ฉด ๊ตฟ!)
$('#names-q3').append(temp_html);
}
function q3_remove() {
// 1. names-q3์ ๋ด๋ถ ํ๊ทธ๋ฅผ ๋ชจ๋ ๋น์ด๋ค.(jQuery์ $('....').empty()๋ฅผ ์ด์ฉํ๋ฉด ๊ตฟ!)
$('#names-q3').empty();
}
</script>
</head>
<body>
<h1>jQuery + Javascript์ ์กฐํฉ์ ์ฐ์ตํ์!</h1>
<div class="question-box">
<h2>1. ๋น์นธ ์ฒดํฌ ํจ์ ๋ง๋ค๊ธฐ</h2>
<h5>1-1. ๋ฒํผ์ ๋๋ ์ ๋ ์
๋ ฅํ ๊ธ์๋ก ์ผ๋ฟ ๋์ฐ๊ธฐ</h5>
<h5>[์์ฑ๋ณธ]1-2. ๋ฒํผ์ ๋๋ ์ ๋ ์นธ์ ์๋ฌด๊ฒ๋ ์์ผ๋ฉด "์
๋ ฅํ์ธ์!" ์ผ๋ฟ ๋์ฐ๊ธฐ</h5>
<input id="input-q1" type="text" /> <button onclick="q1()">ํด๋ฆญ</button>
</div>
<hr />
<div class="question-box">
<h2>2. ์ด๋ฉ์ผ ํ๋ณ ํจ์ ๋ง๋ค๊ธฐ</h2>
<h5>2-1. ๋ฒํผ์ ๋๋ ์ ๋ ์
๋ ฅ๋ฐ์ ์ด๋ฉ์ผ๋ก ์ผ๋ฟ ๋์ฐ๊ธฐ</h5>
<h5>2-2. ์ด๋ฉ์ผ์ด ์๋๋ฉด(@๊ฐ ์์ผ๋ฉด) '์ด๋ฉ์ผ์ด ์๋๋๋ค'๋ผ๋ ์ผ๋ฟ ๋์ฐ๊ธฐ</h5>
<h5>[์์ฑ๋ณธ]2-3. ์ด๋ฉ์ผ ๋๋ฉ์ธ๋ง ์ผ๋ฟ ๋์ฐ๊ธฐ</h5>
<input id="input-q2" type="text" /> <button onclick="q2()">ํด๋ฆญ</button>
</div>
<hr />
<div class="question-box">
<h2>3. HTML ๋ถ์ด๊ธฐ/์ง์ฐ๊ธฐ ์ฐ์ต</h2>
<h5>3-1. ์ด๋ฆ์ ์
๋ ฅํ๋ฉด ์๋ ๋์ค๊ฒ ํ๊ธฐ</h5>
<h5>[์์ฑ๋ณธ]3-2. ๋ค์ง์ฐ๊ธฐ ๋ฒํผ์ ๋ง๋ค๊ธฐ</h5>
<input id="input-q3" type="text" placeholder="์ฌ๊ธฐ์ ์ด๋ฆ์ ์
๋ ฅ" />
<button onclick="q3()">์ด๋ฆ ๋ถ์ด๊ธฐ</button>
<button onclick="q3_remove()">๋ค์ง์ฐ๊ธฐ</button>
<ul id="names-q3">
<li>์ธ์ข
๋์</li>
<li>์๊บฝ์ </li>
</ul>
</div>
</body>
</html>
jQuery ์ฐ์ตํ๊ธฐ ์๊ฐ๋ณด๋ค ์ด๋ ค์ ๋ค...
๋ฌธ์ 1.
๋ค ํ๊ณ ๋์ ์คํ๋ฅดํ์ฝ๋ฉํด๋ฝ ๊ฐ์์๋ฃ์ ์๋ ๋ต์ ์ฐธ๊ณ ํ๋ ค๋ค๊ฐ ๋ต์์๋ ๋ฌธ์ฅ๋ง๋ค ;
์ด ๋ถ์ด์๊ธธ๋ ๊ทธ๊ฑธ ์ณค๋๋ ์ ๋๋ก ์คํ์ด ๋์ง ์์๋ค.
์ฒ์์ ๋๋ ํจ์๊ฐ ๊ทธ ์ดํ๋ถํฐ ์ ๋๋๋ฐ, ๋๋ ๋ฌด์ ๋๋ฌธ์ธ์ง ์์ง ๋ชปํด ์ ์๋์ ๊ฐ์๋ฅผ ๋ค์ด์ผ ํ๋ค. ๋ค์ผ๋ฉด์ ์ ์๋์ด ์ด ์ฝ๋์ ๋์ ์ฝ๋์ ์ฐจ์ด์ ์ด ;
๋ฟ์ด๋ผ๋ ๊ฑธ ์๊ณ ์ง์ ๋๋ ํด๊ฒฐ.... ์ ํ๋ฌด..
๋ฌธ์ 2.
์ฌ๋งํ ๊ฑด ํผ์ ์์ฑ์ ํ๋ค. ๊ทธ๋ฐ๋ฐ 3๋ฒ๋ง ์์ ํด๊ฒฐ์ด ์ ๋๋ ๊ฒ์ด์๋ค. ๊ฐ์์๋ฃ ๋ต์๊ณผ๋ ๋ต๋ ๊ฐ์๊ณ , ์ ์๋๊ณผ์ ๋ต๋ ๊ฐ์๋๋ฐ ๋๋์ฒด ๋ญ๊ฐ ๋ฌธ์ ์ผ๊น ๋จธ๋ฆฌ๋ฅผ ์ฅ์ด์ธ๋งธ๋ค. ๋ฌธ์ ๋ function q3() {} ์์ ๋๊ดํธ }
๊ฐ ๋ซํ ์ํ์์ ์ฝ๋๋ฅผ ์
๋ ฅํ๋ ๊ฒ์ด์๋ค. function q3() { } ๋๊ดํธ ์์ ์์ฑํด์ผ ํ ๊ฒ์ ๋ฐ์ ์์ฑํ๋ ๋น์ฐํ ์คํ์ด ์ ๋๋ค. ์ ์ํ์
๋ฆฌ๋ง์ธ๋ 1. split() ํจ์
์ ๋ฒ์ฃผ ์์
์๊ฐ์๋ ํ์์ง๋ง split()์ผ๋ก ๋ ์ชผ๊ฐ๊ณ ํ ์ ์๋ค๋ ๊ฒ!!
ex. ์ด๋ฉ์ผ ์
๋ ฅ๋ฐ์ ๊ฒ(myemail
)์์ ๋๋ฉ์ธ๊ฐ๋ง ์ถ์ถ
myemail.split('@')[1].split('.')[0]
๋ฆฌ๋ง์ธ๋ 2. includes() ํจ์ ์ฌ์ฉ
๋ณ์๋ช .includes('์ฐพ๊ณ ์ถ์ ๋ฌธ์')
JSON : ๋์ ๋๋ฆฌ + ๋ฆฌ์คํธ ํฉ์ณ์ง ํํ ์ ๋๋ก ์ดํดํ๊ธฐ
ํด๋ผ์ด์ธํธโ์๋ฒ: GET ์์ฒญ
ํต์์ ์ผ๋ก! ๋ฐ์ดํฐ ์กฐํ(Read)๋ฅผ ์์ฒญํ ๋
GET ๋ฐฉ์์ผ๋ก ๋ฐ์ดํฐ๋ฅผ ์ ๋ฌํ๋ ๋ฐฉ๋ฒ
? : ์ฌ๊ธฐ์๋ถํฐ ์ ๋ฌํ ๋ฐ์ดํฐ๊ฐ ์์ฑ๋๋ค๋ ์๋ฏธ์ ๋๋ค.
& : ์ ๋ฌํ ๋ฐ์ดํฐ๊ฐ ๋ ์๋ค๋ ๋ป์ ๋๋ค.
์์) google.com/search?q=์์ดํฐ&sourceid=chrome&ie=UTF-8
์ ์ฃผ์๋ google.com์ search ์ฐฝ๊ตฌ์ ๋ค์ ์ ๋ณด๋ฅผ ์ ๋ฌํฉ๋๋ค!
q=์์ดํฐ (๊ฒ์์ด)
sourceid=chrome (๋ธ๋ผ์ฐ์ ์ ๋ณด)
ie=UTF-8 (์ธ์ฝ๋ฉ ์ ๋ณด)
Ajax ๊ธฐ๋ณธ ๊ณจ๊ฒฉ
$.ajax({
type: "GET",
url: "์ฌ๊ธฐ์URL์์
๋ ฅ",
data: {},
success: function(response){
console.log(response)
}
})
ajax 01 - ๋ฏธ์ธ๋จผ์ง ์์น 70์ด์์ธ ๊ณณ ๋นจ๊ฐ๊ฒ ๋ณด์ด๊ฒ ํ๊ธฐ
ajax 02 - ์ค์๊ฐ ๋ฐ๋ฆ์ด ํํฉ ์ด์ฉํ๊ธฐ
ajax 03 - ๋๋ค ๋ฅดํ์ด API ์ด์ฉํ๊ธฐ
$("#์์ด๋๊ฐ").attr("src", ์ด๋ฏธ์งURL);
$("#์์ด๋๊ฐ").text("๋ฐ๊พธ๊ณ ์ถ์ ํ
์คํธ");
jQuery๊ฐ ์ด๋ ค์ด ์ค ์์๋๋ฐ ajax๊ฐ ๋ ์ด๋ ค์ด ๊ฒ ๊ฐ๋ค. ์ผ์ฃผ์ผ์ด ์ง๋ฌ๋๋ฐ ๋ฒ์จ ajax์ ๋ํ ๊ฐ๋ ์ ๊น๋จน์๋ค. ์ง์์ ์ธ ๋ณต์ต์ด ํ์ํ ๊ฒ ๊ฐ๋ค. ์ด๋์ ๋ด๊ฐ ์ ๋๋ก ๋ ์นํ์ด์ง๋ฅผ ๊ฐ๋ฐ์ ํ ์ ์์์ง์กฐ์ฐจ๋ ์๋ฌธ์ด ๋ ๋ค. (3/31)
1์ฃผ์ฐจ์ ์์ฑํ ํฌ๋ช ๋ก์ ๋ ์จ ์ ๋ณด๋ฅผ ๋ฃ์ด์ฃผ์ธ์!
๋ก๋ฉ์ด ์๋ฃ๋๋ฉด,๋ ์จAPI์ ์ด์ฉํด์ ๋ ์จ๋ฅผ ํ์ํด์ฃผ์ธ์.
โถ๊ณผ์ ํ์ด์ง ๋ฐ๋ก๊ฐ๊ธฐ
์ฝ๋
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<title>ํฌ๋ช
๋ก ๋ง๋ค๊ธฐ</title>
<link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Gowun Dodum', sans-serif;
}
.mytitle {
height: 250px;
width: 100%;
/* ๋ฐฐ๊ฒฝ ์ด๋ก๊ฒ ํ๊ธฐ :: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) */
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://pbs.twimg.com/media/DdzGr4dVwAMbc4M?format=jpg&name=4096x4096");
background-position: center;
background-size: cover;
color: white;
/*display: flex ๋ด์ฉ๋ฌผ์ ๊ฐ์ด๋ฐ๋ก! 4์ค์ด ์ธํธ*/
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.mypost {
max-width : 500px;
width: 95%;
margin: 20px auto 0px auto;
box-shadow: 0px 0px 3px 0px grey;
padding: 20px;
}
.mybtn {
margin-top: 10px;
}
.mycards {
max-width : 500px;
width: 95%;
margin: 20px auto 0px auto;
}
.mycards > .card {
margin-top: 10px;
}
</style>
<script>
$(document).ready(function () {
$.ajax({
type: "GET",
url: "http://spartacodingclub.shop/sparta_api/weather/seoul",
data: {},
success: function (response) {
let temp = response['temp']
$('#temp').text(temp)
}
})
});
</script>
</head>
<body>
<div class="mytitle">
<h1>ํ์ฐ ํฌ๋ช
๋ก</h1>
<p> ํ์ฌ ๊ธฐ์จ : <span id="temp">00.0</span>๋</p>
</div>
<div class="mypost">
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<label for="floatingInput">๋๋ค์</label>
</div>
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea" style="height: 100px"></textarea>
<label for="floatingTextarea">์์ ๋๊ธ</label>
</div>
<div class="mybtn">
<button type="button" class="btn btn-dark">์์ ๋จ๊ธฐ๊ธฐ</button>
</div>
</div>
<div class="mycards">
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>์๋ก์ด ์จ๋ฒ ๋๋ฌด ์ข์์!</p>
<footer class="blockquote-footer"> ๋ฐ๊ตฌ</footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>์๋ก์ด ์จ๋ฒ ๋๋ฌด ์ข์์!</p>
<footer class="blockquote-footer"> ๋ฐ๊ตฌ</footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>์๋ก์ด ์จ๋ฒ ๋๋ฌด ์ข์์!</p>
<footer class="blockquote-footer"> ๋ฐ๊ตฌ</footer>
</blockquote>
</div>
</div>
</div>
</body>
</html>
๋ค์ํ ์ข
๋ฅ๋ก ์ค์ตํ๋ ๊ฒ์ด ์ข์๋ค. ๊ฐ์๊ฐ ์ปดํฉํธํ๋ค! ๋ค์์ฃผ์ ํ์ด์ฌ๊ณผ ๋ฐ์ดํฐ๋ฒ ์ด์ค๋ฅผ ๋ ๋ค ๋ฐฐ์ด๋ค๋ ์ ์ด ์ข์ผ๋ฉด์๋ ๋จ์ ์ด๋ค.
๋น ๋ฅธ ๋งํผ ์๋ก์ด ๊ฑธ ๋ฐ๋ก๋ฐ๋ก ์ต๋ํ๋๊น ์์๊ฐ๋ค๋ ๋๋์ด ๋ค์ด ์ข์๋ค.