jQuery AJAX 跨域请求
Posted 弃身锋刃端!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery AJAX 跨域请求相关的知识,希望对你有一定的参考价值。
跨域请求 只要 dataType : ‘jsonp‘, jsonp:"jsoncallback", 然后返回一个json格式的就可以了
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>|体检系统</title> </head> <body> <script src="http://cdn.bootcss.com/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(function(){ $.ajax( { type:‘get‘, url : ‘http://www.taobao.com?loginuser=lee&loginpass=123456‘, dataType : ‘jsonp‘, jsonp:"jsoncallback", success : function(data) { alert(data) }, error : function() { alert(‘fail‘); } } ); }); </script> </body> </html>
以上是关于jQuery AJAX 跨域请求的主要内容,如果未能解决你的问题,请参考以下文章