js 与 php 通过json数据进行通讯示例_javascript技巧
程序员文章站
2022-05-22 23:04:00
...
js 与 php 通过json数据进行通讯
例子:
php文件
echo json_encode(array(array(
'liaotiantiao'=>$liaotiantiao,
'liaotiank'=>$liaotiank,
'chatuserid'=>$chatuserid,
'chattouserid'=>$chattouserid
)));
?>
html 文件
$(document).ready(function(){
//默认条聊天条聊天框状态
$.post('/index.php/chat/morenltt',{},function(val){
var obj=eval(val);
alert(obj[0].chatuserid);
});
});
例子:
php文件
复制代码 代码如下:
echo json_encode(array(array(
'liaotiantiao'=>$liaotiantiao,
'liaotiank'=>$liaotiank,
'chatuserid'=>$chatuserid,
'chattouserid'=>$chattouserid
)));
?>
html 文件
复制代码 代码如下:
$(document).ready(function(){
//默认条聊天条聊天框状态
$.post('/index.php/chat/morenltt',{},function(val){
var obj=eval(val);
alert(obj[0].chatuserid);
});
});
上一篇: PHP和jQuery实现简单的分页
下一篇: 统计log日志并排序的php程序