목록 취득 중 '조회 중'표시
parent
c68b10a1f3
commit
a638db7d58
|
|
@ -54,6 +54,11 @@
|
||||||
true);
|
true);
|
||||||
xhr.setRequestHeader('Content-type', 'application/json');
|
xhr.setRequestHeader('Content-type', 'application/json');
|
||||||
|
|
||||||
|
|
||||||
|
var dataListEle = document.getElementById('data-list');
|
||||||
|
dataListEle.innerHTML = '<tr><td colspan="11">조회중입니다...</td></tr>';
|
||||||
|
|
||||||
|
|
||||||
xhr.onreadystatechange = function() {
|
xhr.onreadystatechange = function() {
|
||||||
if (xhr.readyState === 4 && xhr.status === 200) {
|
if (xhr.readyState === 4 && xhr.status === 200) {
|
||||||
// 요청 성공 시 처리
|
// 요청 성공 시 처리
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue