ajax跨域调用和非跨域调用的写法

来源:互联网 发布:老千2神之手结局知乎 编辑:程序博客网 时间:2024/06/03 12:26
//支持跨域调用$.ajax({  type:"POST",  async :false,  url:"http://web3.com:9080/authority/dept/hellob.shtml?userName=zqb&callback=?",  dataType:"jsonp",  success:function(data){  //alert(data);console.log(data);},  error:function(){  alert("error");  }    });      }  //不支持跨域调用  function b(){    $.ajax({        type: "post",        dataType: "html",        url: "http://web3.com:9080/authority/dept/hellob.shtml?userName=zqb",        data: "",        success: function (data) {        console.log(data);        }    });    }
0 0
原创粉丝点击