JQuery异步提交请求的3种方法,POST、GET、ajax的提交格式

1、GET

$.get("data.php",$("#firstName.val()"),
function(data){

//返回的data是字符串类型
$("#getResponse").html(data); }

);

 2、POST(emp.do是你提交的地址,返回的数据是json形式)

$.post("emp.do?p=getAllEmp",{id:deptId,x:Math.random()},
function(arry){
          for(var i=0;i

3、Ajax

$.ajax({
  url: "ajax/ajax_selectPicType.jsp",
  data:{Full:"fu"},
  type: "POST",
  dataType:'json',
  success:CallBack,
  error:function(er){
  BackErr(er);}
});

 

你可能感兴趣的:(前端开发,JQuery)