일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 1521
- 소스트리인증실패
- 증가값
- FileZilla설치
- index %
- excel중복체크
- slideUp
- 파일질라설치
- Math.floor()
- 파일질라설치오류
- Excel
- calc.plus
- removeClass
- FileZilla다운로드
- SUB함수
- addClass
- is_check
- Math.round()
- selectoptions
- toFixed()
- Parent
- calc.minus
- Math.ceil()
- ctrl+/
- 파일질라다운로드
- selectedIndex
- Git
- push오류
- hide
- 주석이 먹히지 않을 때
- Today
- Total
잡동사니에도 사랑을
[21.10.19] exam01(01_helloAjax) - Ajax활용하여 txt파일 불러오기 본문
Ajax를 활용하여 다른 페이지에 있는 데이터를 받아오는 방법을 알아보자.
Ajax 외 일반적인 웹은 새로고침을 할 때 새로운 URL이 호출되면서 페이지가 새로 뿌려진다.
하지만 Ajax를 이용하면 비동기 통신 방식으로 로드해올 수 있다.
예제를 살펴보자.
////////exam01.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/reset.css">
</head>
<body>
<h1 class="title">$.ajax() 함수를 사용한 텍스트 읽기</h1>
<div class="exec">
<input type="button" value="txt파일 가져오기" id="mybtn" />
</div>
<div class="console" id="result"></div>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$('#mybtn').click(function(){
$.ajax({ /* 여기서 $는 jQuery이다. 코드를 줄 부분에 {}를 넣어주면 된다 */
url: '../text/text01.txt',
type: 'get',
dataType: 'text', /* 응답으로 text(문자열)이 온다 */
timeout: 30000, /* 30초 */
cache: false,
success: function(data){ /* 문자열이 data로 들어온다 */
//alert(data);
$('#result').html(data); /* 화면 이동없이 바로 밑에 뿌려진다 */
},
error: function(xhr, textStatus, errorThrown){
$('div').html('<div>' + textStatus + '(HTTP-'+ xhr.status + ' / ' + errorThrown + ')<div>');
}
});
});
</script>
</body>
</html>
*주요 내용
→ url을 통해 외부 데이터인 txt파일을 불러온다.
////////common.css
@charset "UTF-8";
html, body {
width: 100%;
height: 100%;
}
h1.title {
font-size: large;
border-left: 10px solid #7BAEB5;
border-bottom: 1px solid #7BAEB5;
padding: 10px;
width: auto;
background-color: #fff;
}
div.exec, div.console {
padding: 20px 15px;
border-bottom: 1px solid #7BAEB5;
}
div.console {
font-family: 'Courier New';
font-size: 12px;
font-style: italic;
line-height: 130%;
}
div.example {
padding: 10px 30px;
}
///////reset.css
@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
////////text01.txt
jQuery AJax 테스트
'JAVA_EE > AJAX' 카테고리의 다른 글
[21.10.20] exam02(02_xml) (0) | 2021.10.20 |
---|---|
[21.10.19] exam01(02_xml) - Ajax를 이용해 XML불러오기 (0) | 2021.10.19 |
[21.10.19] exam04(01_helloAjax) - JSON형식 불러오기 (0) | 2021.10.19 |
[21.10.19] exam03(01_helloAjax) (0) | 2021.10.19 |
[21.10.19] exam02(01_helloAjax) - Ajax를 활용하여 HTML파일 내용 읽기 (0) | 2021.10.19 |