php JSON 跨域调用数据的例子

发布时间:2020-02-22编辑:脚本学堂
php JSON 跨域调用数据的例子,供大家学习参考。

php JSON 跨域调用数据的例子,供大家学习参考。
静态文件:index.html
 

复制代码 代码如下:
<script type="text/javascript">
function getProfile(str) {
   var arr = str;
   document.getElementById('nick').innerHTML = arr.nick;
}
</script>
<body><div id="nick"></div></body>
<script type="text/javascript" src="http://www.jbxue.cn/demo/profile.php"></script>

php文件:profile.php
 

复制代码 代码如下:
<?php
$arr = array(
  'name' => '李飞麟',
  'nick' => '深空',
  'contact' => array(
         'email' => 'shenkong at qq dot com',
         'website' => 'http://www.jb200.com',
        )
);
$json_string = json_encode($arr);
echo "getProfile($json_string)";
?>

您可能感兴趣的文章:
PHP防止跨域提交表单的解决方法
php使用P3P实现跨域的方法分享
http与https跨域共享session的解决方法
php借助P3P完成COOKIE跨域操作的方法分享
php中json的跨域实例分析
php session跨域跨服务器的解决方法分享
php 跨域、跨子域,跨服务器读取session的方法介绍
php的json格式和js跨域调用的代码