简单的php jQuery Ajax JSON 例子

简介:这是简单的php jQuery Ajax JSON 例子的详细页面,介绍了和php,有关的知识、技巧、经验,和一些php源码等。

class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=335095' scrolling='no'>

文件1:index.html

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Json</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs
/jquery/1.4.0/jquery.min.js"></script>
</head>
<body>
<input type="button" value="获取json数据" id="getJSON" />
<script>
$('#getJSON').click(function(){
    $.getJSON('json.php',function(data){
        alert('Name:'+data.name+' ,Age:'+data.age+' ,Hobby:'+data.hobby);
    });
});
</script>
</body>

文件2:json.php

<?php
$array=array('name'=>'Tom','age'=>18,'hobby'=>'basketball');
echo json_encode($array);
?>

“简单的php jQuery Ajax JSON 例子”的更多相关文章 》

爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

http://biancheng.dnbcw.info/php/335095.html pageNo:10

posted on 2011-11-14 09:51  圣者  阅读(217)  评论(0编辑  收藏  举报

导航