IE跨域ajax兼容插件

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

Cross-Domain AJAX for IE8 and IE9


https://github.com/MoonScript/jQuery-ajaxTransport-XDomainRequest


// GET
$.getJSON('http://jsonmoon.jsapp.us/').done(function(data) {
  console.log(data.name.first);
});

// POST
$.ajax({
  url: 'http://frozen-woodland-5503.herokuapp.com/cors.json',data: 'this is data being posted to the server',contentType: 'text/plain',type: 'POST',dataType: 'json'
}).done(function(data) {
  console.log(data.name.last);
});

http://cdnjs.cloudflare.com/ajax/libs/jquery-ajaxtransport-xdomainrequest/1.0.3/jquery.xdomainrequest.min.js
原文链接:https://www.f2er.com/ajax/161730.html

猜你在找的Ajax相关文章