//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 result ;
var xmlhttp;
if(this.browser=='MSIE' ){
try{
xmlhttp=new ActiveXObject('microsoft.xmlhttp');
}catch(e) {
xmlhttp=new ActiveXObject ('msxml2.xmlhttp');
= xmlhttp.responseText;//クロージャ、これは使用できません。属性
};
xmlhttp.open(' GET',this.url '?' this.data,false);//true データを取得できません。なぜですか?
return result;
},
post:function(){
var result;
var xmlhttp;
if(this.browser=='MSIE'){
xmlhttp=new ActiveXObject ('microsoft.xmlhttp'); {
result = xmlhttp .responseText; //クロージャ、これは使用できません。attribute
} > 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('by 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();
};
}