㈠ajax交互的一些小结:
①$.get的方式或者$.post的方式,特点 方便,简洁
json{
userName:kapenter,
password:1314520
}
$.get(url,//url 指向你想访问的servlet 例如:action
function(result){ //放回的值 例如:json 格式的 ,字符串
alert(result.userName) //那么返回来相应的值是kapenter;json格式相应的键值对
alert("first");
},json//指定返回的数据类型
);
alert("second");
此时可能出现的情况是先alert(second),后alert出来的是(first);此种方式的一个弊端:
二:
①用$.ajax的方式交互,也是分post方法,和get方法
json{
userName:kapenter,
password:1314520
}
$.ajax{
url:url//url 指向你想访问的servlet 例如:action
type:"post" //以post的方式提交一般用数据量较大,例如json 或者xml
dataType:"json" //指定json的数据类型返回来
async:false; //默认此处值为true 异步,此处该
date:"user="+zhou, //想servlet那传值,参数
success:function(result){
alert(result.userName)
alert("first");
}};
alert("second");
此时就会先alert“first”然后second!