mui ajax get 数据

前端之家收集整理的这篇文章主要介绍了mui ajax get 数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var date=new Date().getMilliseconds();
var newurl="";
newurl=url+"&username="+user+"&password="+pwd+"&date="+date;
//alert(newurl); 
//请求方式,默认为Get;   
var type = "get";
//预期服务器范围的数据类型
var dataType = "json";
$.getJSON(newurl,success);
 
 
var success = function(response) {
	//alert(response.success);
	var strresponse = JSON.stringify(response);//json对象转为字符串
	
	if (response.success) {
		//mui.toast("登录成功!");
		mui.openWindow({ 
			url: 'qrcode_body.html',id: 'qrcode',extras: {
				plid: response.policeid
			}
		});
	}
	else{
		mui.toast(response.error);//自动消失的提示框
	}
};
原文链接:/ajax/163540.html

猜你在找的Ajax相关文章