当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP 与 js json的通信实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-15 13:10:22 浏览: 评论:0 

简介一下json吧,json(object notation) 是一种轻量级的数据交换格式,易于人阅读和编写,同时也易于机器解析和生成,它基于javascript programming language,standard ecma-262 3rd edition - december 1999的一个子集,json采用完全独立于语言的文本格式,但是也使用了类似于c语言家族的习惯(包括c, c++, c#, java, javascript, perl,python等),这些特性使json成为理想的数据交换语言.

json建构于两种结构:

“名称/值”对的集合(a collection of name/value pairs),不同的语言中,它被理解为对象(object),纪录(record),结构(struct),字典(dictionary),哈希表(hash table),有键列表(keyed list),或者关联数组(associative array).

值的有序列表(an ordered list of values),在大部分语言中,它被理解为数组(array).

php文件代码:

  1. <?php  
  2. $res['id'] = $_post['id'];  
  3. $res['name'] = "elar";  
  4. $res['age'] = "21";  
  5. $response = "hello this is response".$_post['id'];  
  6. echo json_encode($res);  
  7. ?> 

js代码:

  1. <script type="text/javascript">  
  2. function getjson() {  
  3. var xmlhttp;  
  4. try {  
  5. // firefox, opera 8.0+, safari  
  6. xmlhttp = new xmlhttprequest();  
  7. }  
  8. catch (e) {  
  9. // internet explorer  
  10. try {  
  11. xmlhttp = new activexobject("msxml2.xmlhttp");  
  12. }  
  13. catch (e) { 
  14.  
  15. try {  
  16. xmlhttp = new activexobject("microsoft.xmlhttp");  
  17. }  
  18. catch (e) {  
  19. alert("您的浏览器不支持ajax!");  
  20. return false;  
  21. }  
  22. }  
  23.  
  24. xmlhttp.onreadystatechange = function() {  
  25. if (xmlhttp.readystate == 4) {  
  26. //alert(xmlhttp.responsetext);  
  27. var str = xmlhttp.responsetext;  
  28. document.getelementbyid('show').innerhtml +=str;  
  29. //alert(str);  
  30. var obj = eval('('+ xmlhttp.responsetext +')');  
  31. //var obj = eval(({"id":"123","name":"elar","age":"21"}));  
  32. alert(obj.name);  
  33. }  
  34. }  
  35. var data = "id=123";  
  36. xmlhttp.open("post""testjson.php"true);  
  37. xmlhttp.setrequestheader("content-type","application/x-www-form-urlencoded");  
  38. xmlhttp.send("id=123");  
  39. }  
  40. </script>  
  41. <input type="button" onclick="getjson()" value="按我!"/>  
  42. <hr />  
  43. <div id="show"></div> 

Tags: PHP实例 json通信

分享到: