//동기 전송 모드
기능 RequestByGet(nProducttemp ,nCountrytemp)
{
var xmlhttp
if (window.XMLHttpRequest)
{ //isIE = false
xmlhttp = new XMLHttpRequest(); > var URL="http://www.jb51.net/;
xmlhttp .open("GET",URL, false);
//xmlhttp.SetRequestHeader("Content -Type","text/html; charset=Shift_JIS")
xmlhttp.send(null); var result = xmlhttp.status;
//OK
if(result= =200)
{
document.getElementById("div_RightBarBody").innerHTML=xmlhttp.responseText
} 🎜>/ /비동기 전송 모드
var xmlhttp
function RequestByGet(nProducttemp,nCountrytemp)
{
if (window.XMLHttpRequest)
{
//isIE = false;
xmlhttp = new XMLHttpRequest();
} else if (window.ActiveXObject)
{ //isIE = true; 🎜> }
//웹페이지 위치
var URL="http://www.jb51.net/";
xmlhttp.open("GET",URL, true) ;
xmlhttp.onreadystatechange = handlerResponse;
//xmlhttp.SetRequestHeader("Content-Type","text/html; charset=UTF-8")
xmlhttp.send(null)
}
function handlerResponse()
{
if(xmlhttp.readyState == 4 && xmlhttp.status==200)
{
document.getElementById("div_RightBarBody") innerHTML =xmlhttp.responseText;
xmlhttp = null
}
}