Ajax的jsonp方式跨域获取数据的简单实例
程序员文章站
2024-01-30 12:03:28
jsonp的调用,今天碰到了,正好整理了一下。
<...
jsonp的调用,今天碰到了,正好整理了一下。
<!doctype html> <html> <head> <script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#b01").click(function(){ $.ajax({//danielinbiti.txt文件内容:getainfo(["<input type='text' value='1222'/>"]) url: 'http://192.168.12.21:8080/systemr/danielinbiti.txt', datatype: 'jsonp',//跨域设置jsonp processdata: false, jsonpcallback:'getainfo',//与文件中的getainfo对应 type: 'get', success: function(data) { $("#mydiv").html(data); }, error: function(xmlhttprequest, textstatus, errorthrown) { alert('error'); alert(xmlhttprequest.status); alert(xmlhttprequest.readystate); alert(textstatus); } }); }); $("#b02").click(function(){// 需要在后台根据request获取callback,然后才callback(需要返回的json内容)的方式返回,getjson是ajax的简化,只支持json格式 $.getjson("http://192.168.12.21:8080/systemr/b.do?jsoncallback=?",function(result){ $("#mydiv").html(result); }); }); }); </script> </head> <body> <div id="mydiv"><h2>通过 ajax 改变文本</h2></div> <button id="b01" type="button">改变内容01</button> <button id="b02" type="button">改变内容02getjson</button> </body> </html>
以上这篇ajax的jsonp方式跨域获取数据的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: jqGrid 常用 总结 -2
推荐阅读
-
Ajax的jsonp方式跨域获取数据的简单实例
-
【原创】微信授权、获取用户openid-纯前端实现——jsonp跨域访问返回json数据会报错的纯前端解决办法
-
jQuery使用JSONP实现跨域获取数据的三种方法详解
-
jsonp跨域获取数据的基础教程
-
jQuery使用JSONP实现跨域获取数据的三种方法详解
-
ajax跨域获取网站json数据的实例
-
jquery的ajax和getJson跨域获取json数据的实现方法
-
JQuery用$.ajax或$.getJSON跨域获取JSON数据的实现代码
-
PHP下ajax跨域的解决方案之jsonp实例分析
-
AJAX跨域请求JSONP获取JSON数据的实例代码