function readHTML(){
$.ajax( {
async:false,
url : "aa.html",
success : function(result){
alert(result)
}
}); }
async:false, 이는 다른 js와의 동기화를 위한 것입니다. true이거나 채워지지 않으면 동일한 레벨의 다른 코드가 먼저 실행되므로 여기서의 결과는 비어 있습니다. 그리고 다른 코드만 실행됩니다. 내부 내용은 완료 후에만 실행되며 결과는 일반적으로 필요하지 않습니다.
이해가 잘 안 될 수도 있습니다. 이 속성에 대한 자세한 소개는 다음과 같습니다. 예: http://www.cnblogs.com/wlmemail/archive/2010/06/22/1762765.html
참고: jQuery를 사용하여
js를 사용한다면 다음과 같습니다.
var xmlhttp
if (window.XMLHttpRequest) { // IE7, Firefox, Chrome, Opera, Safari와 호환
xmlhttp = new XMLHttpRequest(); >}
else { // IE6, IE5와 호환
xmlhttp = new ActiveXObject("Microsoft .XMLHTTP")
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp .readyState == 4 && xmlhttp.status == 200) {
document.getElementById("myDiv" ).innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET" , "aa.html", true);
xmlhttp.send();
myDiv는 페이지에 정의된 div입니다.
이것이 문제에 대한 나의 해결책의 소스입니다: http://stackoverflow.com/questions/8197709/javascript-read -html-from-url-into-string
참조: http://www.w3schools.com /ajax/tryit.asp?filename=tryajax_first