跨域
- $.ajax({
- type : "get",
- async:false,
- url : "http://app.example.com/base/json.do?sid=1494&busiId=101",
- dataType : "jsonp",//jsonp数据类型
- jsonp: "jsonpCallback",//服务端用于接收callback调用的function名的参数
- success : function(data){
- $("#myID").text("Result:"+data.result)
- },
- error:function(){
- alert('fail');
- }
- });
有些事现在不做,一辈子都不会做了