zoukankan      html  css  js  c++  java
  • AJAX调用代码实例

    if (typeof CNLive == "undefined")
    	CNLive = {};
    
    CNLive.AJAX2 = {
    	xmlRequest : null,
    	requestUrl : "",
    	initRequest : function(method) {
    		this.xmlRequest = new XMLHttpRequest();
    	},
    	sendRequest : function(method) {
    		if (this.xmlRequest == null) {
    			this.initRequest(method);
    		}
    		if ("withCredentials" in this.xmlRequest) {
    			this.xmlRequest.open(method, this.requestUrl, true);
    		} else if (typeof XDomainRequest !== "undefined") {
    			this.xmlRequest = new XDomainRequest();
    			this.xmlRequest.open(method, this.requestUrl);
    		} else {
    			this.xmlRequest = null;
    			return;
    		}
    		if (this.xmlRequest == null)
    			return;
    		this.xmlRequest.onload = function() {
    			var data = CNLive.AJAX2.xmlRequest.responseText;
    			var json = eval("(" + data + ")");
    			if (json) {
    				CNLive.MovieList.handleMovieList(json);
    			}
    		}
    		this.xmlRequest.send();
    	}
    };
    
    CNLive.AJAX = {
    	xmlRequest : null,
    	requestUrl : "",
    	initXMLRequest : function() {
    		if (window.ActiveXObject) {
    			this.xmlRequest = new ActiveXObject("Microsoft.XMLHTTP");
    		} else {
    			if (window.XMLHttpRequest) {
    				this.xmlRequest = new XMLHttpRequest();
    			}
    		}
    	},
    	sendHTTPRequest : function() {
    		var url = this.requestUrl;
    		if (this.xmlRequest) {
    			this.xmlRequest.open("POST", encodeURI(url), true);
    			this.xmlRequest.onreadystatechange = this.requestStateChange;
    			this.xmlRequest.setRequestHeader("If-Modified-Since", "0");
    			this.xmlRequest.send(null);
    		}
    	},
    	requestStateChange : function() {
    		var xmlRequest = CNLive.AJAX.xmlRequest;
    		if (xmlRequest.readyState == 4) {
    			if (xmlRequest.status == 200) {
    				var requestReturnStr = xmlRequest.responseText;
    				var json = eval("(" + requestReturnStr + ")");
    				if (json) {
    					CNLive.MovieList.handleMovieList(json);
    				}
    			}
    		}
    	}
    };
    
    
    

      

    缘来天注定,缘去人自夺。种如是因,收如是果,一切唯心造。笑言面对,不去埋怨。悠然、随心、随性、随缘。
  • 相关阅读:
    北京六环附近及往内的可驾驶道路网络(路网graph为连通图)
    OSM数据处理-python工具包
    小程序踩坑
    小程序基本配置
    JavaScript 基础(四):Array
    MYSQL--慎用group_concat()
    真正高效的SQLSERVER分页查询
    PhpStorm Git 操作
    linux 查看当前目录文件的大小
    @PostConstruct和@PreDestroy的使用说明
  • 原文地址:https://www.cnblogs.com/gaojianqi/p/3611701.html
Copyright © 2011-2022 走看看