当前位置:Gxlcms > PHP教程 > jquery+php查询数据库兑现json的例子

jquery+php查询数据库兑现json的例子

时间:2021-07-01 10:21:17 帮助过:29人阅读

jquery+php查询数据库实现json的例子
哪位有这方面的例子?最近急需这方面的材料


------解决方案--------------------
参考
------解决方案--------------------
test.php
exit(json_encode(array('i1'=>'1','i2'=>'2',)));


jquery ajax请求
$.getJSON(
"test.php",
function(json){
alert("JSON Data: " + json.i1);
}
);

具体的详细的可以查看jquery手册
------解决方案--------------------
数据库查询就查看php手册吧
------解决方案--------------------
test.php
exit(json_encode(array('i1'=>'1','i2'=>'2',)));


jquery ajax请求
$.getJSON(
"test.php",
function(json){
alert("JSON Data: " + json.i1);
}
);

人气教程排行