JavaScript(18) jquery+ajax实现用户登录案例

jQuery.get(url, [data], [callback], [type]);
    url : 待载入页面的URL地址
    data : 待发送 Key/value 参数。
    callback : 载入成功时回调函数。
    type : 返回数据的类型,xml, html, script, json, text, _default。

jQuery.post(url, [data], [callback], [type]);    -->  post提交和get提交参数一样

前台页面:



	
		
		jquery+ajax实现登录
		
		
	
	
		
用户名:
密码:

后台:(注意:这里我使用的是SpringMVC)

/**
 * 登录处理:
 * 注意:异步技术必须加@ResponseBody
 * @author 郑清
 */
@Controller
public class LoginController {
	
	@RequestMapping("/login")
	@ResponseBody
	public boolean login(String username,String password){
		return "admin".equals(username)&&"123456".equals(password) ? true : false;
	}
	
}

运行效果:

JavaScript(18) jquery+ajax实现用户登录案例_第1张图片

你可能感兴趣的:(-----❶,JavaScript,jquery,ajax实现用户登录)