码迷,mamicode.com
首页 > Web开发 > 详细

Js之AJAX

时间:2016-10-23 23:44:15      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:htm   document   microsoft   ons   function   innerhtml   nbsp   soft   http   

var xmlHttp;

         function createHttp() {

             try {

                 xmlHttp = new XMLHttpRequest();

             } catch (e) {

                 xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");

             }

         }

 createHttp();

             xmlHttp.onreadystatechange = function () {

                 if (xmlHttp.status == 200 && xmlHttp.readyState == 4) {

 

                     var data = xmlHttp.responseText;

                     document.getElementById("div1").innerHTML = data;

                 }

             }

             xmlHttp.open("get", "HandlerData.ashx");

             xmlHttp.send();

Js之AJAX

标签:htm   document   microsoft   ons   function   innerhtml   nbsp   soft   http   

原文地址:http://www.cnblogs.com/wangxlei/p/5991317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!