//javascript 객체: ajax 객체
// 작성자: RexLee
function Ajax(url,data){
this.url=url;
this.data=data;
this.browser=(function(){
if(navigator .userAgent.indexOf("MSIE")>0) {
();
};
Ajax.prototype={
get:function(){
var 결과 ;
var xmlhttp;
if(this.browser=='MSIE' ){
try{
xmlhttp=new ActiveXObject('microsoft.xmlhttp');
}catch(e) {
xmlhttp=new ActiveXObject ('msxml2.xmlhttp');
> GET',this.url '?' this.data,false);//true는 데이터를 가져올 수 없습니다. 왜?
결과를 반환합니다.
},
post:function(){
var result;
var xmlhttp;
if(this.browser=='MSIE'){
xmlhttp=new ActiveXObject ('microsoft.xmlhttp') {
result = xmlhttp .responseText; //클로저, 이 속성을 사용할 수 없습니다
}; > xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");//POST에서 이 문장은
이어야 합니다. xmlhttp.send(this.data);
}
};
//var a=new ajax('opp2.js','');
//alert(' by GET\n' a.get( ))
//alert('POST\n' a.post());
///////////////// ///////// //////
window.onload=function(){
document.getElementById("btn").onclick= function(){
var p= document.getElementById("t").value;
var a=new Ajax("phpOOP/getPage.php","page=" p);
문서. getElementById("box").innerHTML=a .get();
};
}