跨域Ajax调用

前端之家收集整理的这篇文章主要介绍了跨域Ajax调用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

jsonp调用后台java返回

<script> $.ajax({ type: 'GET',url: '<%=urls%>',dataType:'jsonp',data:{ "token" : '<%=token%>',"method" : '<%=method%>',
"appName" : '<%=appName%>',"secret" : '<%=secret%>',"dataType" : 'json',"dataParams" : '<%=dataParams%>',"sign" : '<%=sign%>' },jsonp:'jsonpcallback',error: function(XmlHttpRequest,textStatus,errorThrown){ alert("部门切换失败,请联系管理员!"); top.location.href = '/portal/mainFrame/frame.html'; },success: function(msg){
if(msg.code=="100"){ top.location.href = "clearToken.jsp?appName=<%=caAppName%>"; }else{ alert("部门切换失败,请联系管理员!\n错误代码:"+msg.code); top.location.href = '/portal/mainFrame/frame.html'; }

}  
  });

</script>

String jsonp=request.getParameter("jsonpcallback"); return jsonp+"("+s+")";

原文链接:https://www.f2er.com/ajax/163193.html

猜你在找的Ajax相关文章