19
XMLHttpRequest 상태 0 (responseText가 비어 있음)
XMLHttpRequest로 데이터를 가져올 수 없습니다 (상태 0 및 responseText가 비어 있음) : xmlhttp = new XMLHttpRequest (); xmlhttp.open ( "GET", "http://www.w3schools.com/XML/cd_catalog.xml", true); xmlhttp.onreadystatechange = function () { if (xmlhttp.readyState == 4) alert ( "상태"+ xmlhttp.status); } xmlhttp.send (); "상태 0"을 경고합니다. localhost 요청과 동일한 상황 (cd_catalog.xml이 로컬 파일로 저장 됨) …