天天看點

2012暑假Ajax學習筆記

function createAjax(){
        var xmlhttp;
            try{
                xmlhttp = new XMLHttpRequest();
            }catch{
                try{
                    xmlhttp = new ActiveXObject("MSXML2.XMLHttp");
                }catch{
                    try{
                        xmlhttp = new ActiveXObject("Micrsoft.XMLHttp);
                    }
                }
            }
            return xmlhttp;
    }      

寫部落格不僅是一種習慣,更是一種沉澱。