button.css
简洁、直观、强悍的前端开发框架,让web开发更迅速、简单。
button.css100素材网 开发,欢迎广大前端码农使用。有好的建议欢迎给我们 留言 哦!
Nicole McIntyre 发布于
ajax 跨域
网络编程
php
文章来源: 100素材网 更新时间: 2014-08-11 16:17:45
ajax 跨域 jquery ajax跨域 ajax跨域请求 jsonp 跨域请求数据
客户端代码
<html>
<head>
<script type="text/javascript" src="http://100sucai.com/js/jquery.js"></script>    
<script type="text/javascript">  
$.ajax({
type : "get",
async:false,
url : "http://100sucai.com/img/test/test.php",
//url:"test.php",
dataType : "jsonp",
success : function(data){
alert(data.name);
},
error:function(){
alert('fail');
}
});
</script> 
</head>
<body>
</body>
</html>
服务端代码
<?php 
$jsonp = $_REQUEST["callback"];
$str = '{"id":"1","name":"100素材网"}';
$str = $jsonp . "(" .$str.")";
echo $str;
 ?>
除非特别声明,此稿为原稿转载请注明原文链接
原文地址:http://www.100sucai.com/code/1274.html

浏览次数

标签分类

站长空间
站长博客