php,ajax无刷新留言板,php,ajax无刷新分页,php,ajax实时刷新
后端开发-php教程
本文介绍了一款无刷新的新闻留言系统,最简明易懂的一个ajax无刷新留言系统,源码中省略了接受数据验证的过程,大家可根据自己的需求进行扩展,下面进入主题。php订货系统源码,Ubuntu提高鼠标精度,win10配tomcat,银行活动爬虫,php培训费,seo翻页lzw
淘宝客活动源码,ubuntu桌面右键英文,python爬虫元素定位,php 海康,seo重复链接lzw
核心源码:内存注册机 源码,Ubuntu串口通信代码,爬虫获取高清图片,php脚本中添加php配置,seo问答推广lzw
1.配置文件:config.php,代码如下:2.处理请求:deal.php,代码如下:
3.首页代码:index.php,代码如下:
数据库文件,代码如下:无刷新 body{color:#555;font-size:14px;padding:0;margin:0;} #form { background:#dedede; padding:10px 20px; width:300px;} #show{ background:#f6f6f6;padding:10px 20px; width:300px;} #show p{ margin:6px; font-size:13px; line-height:22px; border-bottom:1px dashed #cdcdcd;} $(function(){ $("#sub").click(function(){ //只是说明原理,然后这里省去了验证文本框内容的步骤,直接发送ajax请求 $.post("deal.php",{name : $("#name").val(), content : $("#content").val()}, function(data){ if(data.status){ var str = ""+data.name+" 发表了:"+data.content+"
"; $("#show").prepend(str); //在前面追加 }else{ alert("评论失败"); } }, 'json'); }); });用户名:
内 容:<?php include "config.php"; $sql = "select * from test;"; $res = mysql_query($sql,$link); while($row=mysql_fetch_array($res)){ echo "".$row['name']." 发表了:".$row['content']."
"; } ?>
DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL, `content` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;以上就是为大家分享的php+ajax实现无刷新的新闻留言系统,希望对大家的学习有所帮助。