首页 > 编程语言 > 详细

ajax提交的javascript代码

时间:2017-02-07 23:49:01      阅读:318      评论:0      收藏:0      [点我收藏+]

var xhr=xhr();

function xhr(){

      if(window.XMLHttpRequest){

                 return   window.XMLHttpRequest();

                }else if(window.ActiveXObject){

                      return new ActiveXObject("Microsoft.XMLHTTP");

                }catch(e){

                     try{

                             return new ActiveXObject("Msxml2.XMLHTTP");

                        }catch (ex){}

                   }

                 }

             }

            xhr.open("get","url","true");

           xhr.onreadystatechange=function(){

                  if(xhr.readyState==4&&(xhr.status==200||xhr.status==304)){

                            document.getElementById("myDiv").innerHTML=xhr.responseText;

                           }

                    }

                xhr.send();

       

ajax提交的javascript代码

原文:http://www.cnblogs.com/suajiu9/p/6376133.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!