//支持跨域调用
$.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);
}
});
}版权声明:本文为koproblem原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。