假设在服务器上有文件 http://test.unmi.cc/json.php 文件,它的内容为:
[代码 1]
1 2 3 4 5 6 7 8 9 10 |
<?php header('Content-type: application/json'); $user = array ( "name" => "Unmi", "blog" => "http://unmi.cc" ); echo json_encode($user); ?> |
要是在同一个域上要取该文件的内容,那好办,比如同为 test.unmi.cc 域上的 ajax.html 文件中写上:
[代码 2] 阅读全文 >>