jquery的跨域请求

今天帮同事忙的时候遇到的,暂时还没测试这样到底行不行,先记录下来

servlet端的输出

String callback=request.getParameter("callback");   
JSONObject jb = JSONObject.fromObject(result);// 更改为你自己的拼装JSON代码   
PrintWriter out = response.getWriter();   
  
out.print(callback+"("+jb.toString()+")",false);   
out.close();

 浏览器端的调用

$.ajax({   
    url    : url,   
    data   : data,   
    dataType : "jsonp",   
    jsonnp : 'callback',   
    timeout:15,   
    success : function(map){   
	if(map["success"]=="true"){   
	    _dialogAlert("登录成功!",'登录成功');   
	    location.reload();   
	}else{   
	    _dialogAlert(map["errorMsg"],'登录失败');   
	}   
    },   
    error:function (XMLHttpRequest, textStatus, errorThrown) {   
       // 通常 textStatus 和 errorThrown 之中   
      // 只有一个会包含信息   
      _dialogAlert("请求超时,请稍后重试。"); // 调用本次AJAX请求时传递的options参数   
    }   
});  
 

你可能感兴趣的:(HTML/JS/CSS,jQuery,Ajax,jsonp,json,浏览器)