原生 Ajax 和 JQuery Ajax

XHR,原生js方式

获取XHR对象

var XHR=false;
if(window.XMLHttpRequest){
    XHR = new XMLHttpRequest();
}else{
    XHR = new ActiveXObject('Microsoft.XMLHTTP');
}

发送数据示例

//再三确认
if(XHR!=false){
	var uri="sign.action";
	XHR.open("post",uri,true);
	XHR.setRequestHeader("Content-type","application/x-www-form-urlencoded");
	XHR.send("date="+date);
	XHR.onreadystatechange=signResult;
}
else
	alert("XHR is NULL");

接收数据示例

function signResult(){
	if(XHR.readyState==4 && XHR.status==200){
		if(!XHR.responseText)
			alert("...")
		else{
		...
		}	
	}
}

JQuery的方式

get、post方式

$.get(action,function(result,statu){
	switch(statu){
	case "success":
	    ...
	}
},"json");
	
$.post(action,function(result,statu){
	switch(statu){
	case "success":
	    ...
	}
},"json");

ajax方式

//dateType为返回的数据类型
$.ajax({
    url:url,
    type:"POST",
    data:data,
    timeout:30000,
    dataType:'json',
    success:success,
    error:function(xhr,status){
        console.log(url+"数据获取错误:"+status);
    }
})

附:获取项目根目录的方法

function getRootPath_dc() {
    var pathName = window.location.pathname.substring(1);
    var webName = pathName == '' ? '' : pathName.substring(0, pathName.indexOf('/'));
    if (webName == "") {
        return window.location.protocol + '//' + window.location.host;
    }
    else {
        return window.location.protocol + '//' + window.location.host + '/' + webName;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值