jQuery 的$.getJSON 原理是jsonp,利用的是script标签的src属性,所以只能是get,jquery不支持post跨域。 要实现跨域post,建议用cors(跨域资源共享)只需要在response header 上添加一个标头,以php为例,header("Access-Control-Allow-Origin: http://www.test.com(你允许访问的地址)"),这样Ajax...
jsonp请求啊,.ajax({ type: 'GET', url: '<%=urls%>', dataType:'jsonp', data:{ "token" : '<%=token%>', "method" : '<%=method%>',
01:$.post(url,[data],[callback],[type]) — 这是发起一个http请求(以get的方式) 参数1:url:待载入页面的URL地址,; 参数2:data:待发送 Key/value 参数。 对象的形式! 参数3:callback:载入成功时回调函数。 参数4:type:返回内容格式:json,text,html,xml,script,_default 注意点:url为必须传递的参数,...