jQuery AJAX 跨域请求
2021-07-08 06:04
标签:line back head http query amp oct json格式 success 跨域请求 只要 dataType : ‘jsonp‘, jsonp:"jsoncallback", 然后返回一个json格式的就可以了 jQuery AJAX 跨域请求 标签:line back head http query amp oct json格式 success 原文地址:http://www.cnblogs.com/wtcl/p/7098112.htmldoctype 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>
上一篇:HTML图片
下一篇:一个优秀的网站首页是如何设计的?