愚僧

          贏與輸的差別通常是--不放棄

          BlogJava 首頁 新隨筆 聯系 聚合 管理
            23 Posts :: 0 Stories :: 2 Comments :: 0 Trackbacks
          /* 參考 : http://www.w3school.com.cn/xmldom/dom_http.asp */
          /*
           * 獲取ajax對象
           
          */
          function getXmlHttpRequest(){
              var xhr = null;
              if(typeof(XMLHttpRequest) != 'undefined'){
                  xhr = new XMLHttpRequest();
              }else{
                  xhr = new ActiveXObject("Microsoft.XMLHttp");
              }
              return xhr;
          }

          /*
           * post方式請求
           
          */
          function post(url, queryString,fn){
              var xhr = getXmlHttpRequest();
              xhr.open('post',url,true);
              xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
              xhr.onreadystatechange=function(){
                  if(xhr.readyState == 4){
                      if(xhr.status == 200){
                          fn.apply(this,[xhr]);
                      }
                  }
              };
              xhr.send(queryString);
          }

          /*
           * get方式請求
           
          */
          function get(url,fn){
              var xhr = getXmlHttpRequest();
              xhr.open('get',url,true);
              xhr.onreadystatechange=function(){
                  if(xhr.readyState == 4){
                      if(xhr.status == 200){
                          fn.apply(this,[xhr]);
                      }
                  }
              };
              xhr.send(null);
          }

           /*
            * 測試
            
          */
          post("ajax","",function(xhr){
              alert(xhr.responseText);
          });
          posted on 2013-02-22 17:18 ywm 閱讀(106) 評論(0)  編輯  收藏 所屬分類: html & css & js

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 盖州市| 开远市| 突泉县| 商丘市| 包头市| 宣武区| 夏邑县| 阿克陶县| 丹寨县| 兰溪市| 广宁县| 塘沽区| 大洼县| 七台河市| 北海市| 湄潭县| 阳泉市| 石柱| 乌鲁木齐县| 宜兴市| 津南区| 榆林市| 拉萨市| 高要市| 南汇区| 台江县| 汝州市| 沙雅县| 当阳市| 和林格尔县| 蒲城县| 武宣县| 客服| 盐城市| 韶山市| 曲阳县| 饶河县| 漳州市| 泸溪县| 湘西| 邯郸市|