jquery中的另外两个异步的方法,$.get()和$.post(),这两个方法大同小异,这里我只介绍$.get(url,data,callback,type)方法
(1).观察方法,可以发现带有$.因此可以断定这是一个全局函数.
(2).$.get(url,type)
url:请求路径
data:请求参数,格式是key/value格式(json格式).
textStatus:请求的状态,其值是success、error、notmodify、timeout等.
返回值:XMLHttpRequest对象.
type:返回内容格式,xml,html,script,json,text,_default。
(3).$.get()方法的请求类型一定是GET方式
案例:
get.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>get()方法</title> <Meta http-equiv="content-type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="../js/jquery-1.4.2.js"></script> <style type="text/css"> div,span{ width: 140px; height: 140px; margin: 20px; background: #9999CC; border: #000 1px solid; float:left; font-size: 17px; font-family:Roman; } div.mini{ width: 30px; height: 30px; background: #CC66FF; border: #000 1px solid; font-size: 12px; font-family:Roman; } div.visible{ display:none; } </style> <!--引入jquery的js库--> </head> <body> <form action="" name="form1" id="form1"> <input type="text" name="username" id="username" value="zhang"><br> <input type="text" name="psw" id="psw" value="99999"><br> <input type="button" id="b1" value="登陆"> </form> <div id="one"> </div> </body> <script language="JavaScript"> $(function(){ var json={username:$("#username").val(),psw:$("#psw").val()}; $("#b1").click(function(){ $.get("get.jsp",function(data,textStatus){ var json=eval("("+data+")"); console.info(json); }); }); }) </script> </html>get.jsp页面
<%@ page language="java" pageEncoding="UTF-8"%> <% System.out.println("conenction server success!"); System.out.println(request.getMethod()); System.out.println("username = "+request.getParameter("username")); System.out.println("password = "+request.getParameter("psw")); //响应文本格式 out.println("helloworld!"); //响应XML格式 //response.setContentType("text/xml"); //out.println("<china><province name='jilinsheng'></province></china>"); //响应JSON格式:jQuery提供的get()或post()方法时,数据格式为JSON格式时,只能使用第三方工具构建JSON格式的数据内容,不能使用手工方式 out.println("[{'province':'jilinsheng'},{'province':'liaoningsheng'},{'province':'shandongsheng'}]"); %>火狐浏览器firbug观察:
控制台打印:
原文链接:https://www.f2er.com/ajax/163149.html