$.post('{:url("index/index/logininfo")}',{'username':name,'password':pwd},function(data){
if(data.result){
alert(data.result);
// window.location.href='./index.html';
}else{
alert(2);
}
},'json');
当按钮被点击将用户名密码传输到后台
$.post('{:url("index/index/logininfo")}',{'username':name,'password':pwd},function(data){
if(data.result){
alert(data.result);
// window.location.href='./index.html';
}else{
alert(2);
}
},'json');
当按钮被点击将用户名密码传输到后台