简单的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); ?>