<?php
header('Content-type: application/json');
//获取回调函数名
$jsoncallback = htmlspecialchars($_REQUEST ['jsoncallback']);
//json数据
$json_data = '["customername1","customername2"]';
//输出jsonp格式的数据
echo $jsoncallback . "(" . $json_data . ")";
?>
<script>
$(document).ready(function () {
$("#btn").click(function () {
alert(888);
$.ajax({
url: "http://.com/ceshi.php",
type: "GET",
dataType: "jsonp", //指定服务器返回的数据类型
jsonp: "jsoncallback",
success: function (data) {
var result = JSON.stringify(data); //json对象转成字符串
$("#text").text(result);
},
error:function(){
$("#text").text(3333333333);
}
});
});
});
</script>
网友评论