本文实例讲述了php+jquery ajax实现的实时刷新显示数据功能。分享给大家供大家参考,具体如下:
创建数据表:demo
---- 表的结构 `demo`--create table if not exists `demo` ( `id` int(11) nerp沙盘模拟心得ot null auto_increment, `name` varchar(20) collate utf8_bin not null, primary key (`id`)) engine=innodb default chart=utf8 collate=utf8_bin auto_increment=5 ;---- 转存表中的数据 `demo`--inrt into `demo` (`id`, `name`) values(1, '雷军'),(2, '马化腾'),(3, '李彦宏'),(4, '马云');
服务器文件:demo.php
<?php$mysqli = new mysqli("localhost","root","","test");$mysqli->t_chart('utf8');$query = 'lect * from demo';$result = $mysqli->query($query);$arr = $result->fetch_all(mysqli_assoc);$info = json_e关于学习的电影ncode($arr);echo $json = '{"success":true,"info":'.$info.'}';
显示数据网页: fresh.html
<html><head> <meta chart='utf-8'> <title>hello</title></head><body><script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script><script> function check(){ $.ajax({ type:"get", url:"./demo.php", datatype:"json", success:function(data){ if(data.success){ var count = data.info.length; for(i=0;i<count;i++){ var dom = "<tr align='center' id='"+data.info[i].id+"'><td>"+data.info[i].id+"</td><td>"+data.info[i].name+"</td></tr>"; 高中议论文怎么写 var tag = '#'+data.info[i].i如何做烤鱼d; if(!$(tag).length){ $("#info").append(dom); } } }el{ alert('error'); } }, error:function(res){ alert(res.status); } }); } window.tinterval(check, 1000); //每秒执行一次</script><body> <div style='width:600px;margin:0 auto;'> <table border='1' width="600px"> <thead> <tr><th>id</th><th>name</th></tr> </thead> <tbody id='info'> <tr align='center' id='111'><td>12016年金鹰奖颁奖典礼11</td><td>测试</td></tr> </tbody> </table> </div></body></html>
本文发布于:2023-04-08 07:48:21,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/8b6009e6e859ce51fc1b1c0d076d9afc.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php+jQuery ajax实现的实时刷新显示数据功能示例.doc
本文 PDF 下载地址:php+jQuery ajax实现的实时刷新显示数据功能示例.pdf
留言与评论(共有 0 条评论) |