php+ajax制作无刷新留言板
程序员文章站
2023-09-04 15:56:39
本文就是和大家分享一款由php结合ajax实现的无刷新留言板,先给大家看一下最后的效果图:
数据库连接代码如下:
本文就是和大家分享一款由php结合ajax实现的无刷新留言板,先给大家看一下最后的效果图:
数据库连接代码如下:
<?php $conn = @mysql_connect("localhost","root","root") or die ("mysql连接错误"); mysql_select_db("demo",$conn); mysql_query("set names 'utf8'"); ?>
index.php文件代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <link href="bbs.css" type="text/css" rel="stylesheet"> <title>无刷新显示回帖</title> <script src="bbs.js" type="text/javascript"></script> </head> <body> <h1>无刷新显示回帖</h1> <div id="thread"> <?php include("conn.php"); $sql = "select * from `bbs_post` where `threadid` ='1' order by id asc"; $query =mysql_query($sql); while($row = mysql_fetch_array($query)){ ?> <div class="post" id="post<?php echo $row['id'];?>"> <div class="post_title"><?php echo $row['title'];?> [<?php echo $row['username'];?>]</div> <div class="post_content"><pre><?php echo $row['content'];?></pre></div> </div> <?php } ?> </div> <table class="reply"> <tr> <td colspan="2" class="title">回帖<input type="hidden" name="threadid" id="threadid" value="1"></td> </tr> <tr> <td>姓名:</td> <td><input type="text" name="username" id="username"></td> </tr> <tr> <td>标题:</td> <td><input type="text" name="post_title" id="post_title"></td> </tr> <tr> <td>内容:</td> <td><textarea name="post_content" id="post_content"></textarea></td> </tr> <tr> <td colspan="2"><input type="button" onclick="submitpost()" value="提交"></td> </tr> </table> </body> </html>
bbspost.php文件代码如下
<?php include("conn.php"); $title = $_post["title"]; //获取title $content = $_post["content"]; //获取content $username = $_post["username"]; //获取username $threadid = $_post["threadid"]; //获取threadid $sql="insert into bbs_post (title,content,username,threadid) " . "values ('$title','$content','$username','$threadid')"; mysql_query($sql); //传回最后一次使用 insert 指令的 id $responseid=mysql_insert_id(); echo $responseid; ?>
bbs.js文件里面包括了大量ajax文件,代码如下
//先创建一个空的bbs.js文件,并修改其属性为utf-8,才能保存中文。 var xmlhttp; //用于保存xmlhttprequest对象的全局变量 var username; //用于保存姓名 var title; //用于保存标题 var content; //用于保存内容 var threadid; //用于保存主题编号 //用于创建xmlhttprequest对象 function createxmlhttp() { //根据window.xmlhttprequest对象是否存在使用不同的创建方式 if (window.xmlhttprequest) { xmlhttp = new xmlhttprequest(); //firefox、opera等浏览器支持的创建方式 } else { xmlhttp = new activexobject("microsoft.xmlhttp");//ie浏览器支持的创建方式 } } //提交回帖到服务器 function submitpost() { //获取帖子中姓名、标题、内容、主题编号四部分信息 username = document.getelementbyid("username").value; title = document.getelementbyid("post_title").value; content = document.getelementbyid("post_content").value; threadid = document.getelementbyid("threadid").value; if (checkform()) { createxmlhttp(); //创建xmlhttprequest对象 xmlhttp.onreadystatechange = submitpostcallback; //设置回调函数 xmlhttp.open("post", "bbspost.php", true); //发送post请求 //设置post请求体类型 xmlhttp.setrequestheader("content-type","application/x-www-form-urlencoded"); xmlhttp.send("username=" + encodeuri(username) + "&title=" + encodeuri(title) + "&content=" + encodeuri(content) + "&threadid=" + threadid); //发送包含四个参数的请求体 } } //检查表单是否内容已填写完毕 function checkform() { if (username == "") { alert("请填写姓名"); return false; } else if (title == "") { alert("请填写标题"); return false; } else if (content == "") { alert("请填写内容"); return false; } return true; } //获取查询选项的回调函数 function submitpostcallback() { if (xmlhttp.readystate == 4) { alert(xmlhttp.responsetext); createnewpost(xmlhttp.responsetext); } } //创建新的回帖 function createnewpost(postid) { //清空当前表单中各部分信息 document.getelementbyid("post_title").value = ""; document.getelementbyid("post_content").value = ""; document.getelementbyid("username").value = ""; var postdiv = creatediv("post", ""); //创建回帖的外层div postdiv.id = "post" + postid; //给新div赋id值 var posttitlediv = creatediv("post_title", title + " [" + username + "]"); //创建标题div var postcontentdiv = creatediv("post_content", "<pre>" + content + "</pre>"); //创建内容div postdiv.appendchild(posttitlediv); //在外层div追加标题 postdiv.appendchild(postcontentdiv); //在外层div追加内容 document.getelementbyid("thread").appendchild(postdiv); //将外层div追加到主题div中 } //根据classname和text创建新的div function creatediv(classname, text) { var newdiv = document.createelement("div"); newdiv.classname = classname; newdiv.innerhtml = text; return newdiv; }
bbs.css文件如下:
/* 页面基本样式 */ body, td, input, textarea { font-family:arial; font-size:12px; } /* 主题的样式 */ #thread { border:1px solid black; width:300px; margin-bottom:10px; } /* 提示信息div的样式 */ #statusdiv { border:1px solid #999; background:#ffffcc; width:100px; position:absolute; top:50%; left:50%; margin:-50px 0 0 -100px; width:280px; } /* 帖子的样式 */ div.post { border-bottom:1px solid black; padding:5px; } /* 帖子title的样式 */ div.post_title { border-bottom:1px dotted #0066cc; font-weight:bold; } /* 帖子content的样式 */ div.post_content { font-size:12px; margin:5px; } /* 回帖表格基本样式 */ table.reply { border-collapse:collapse; width:300px; } /* 回帖表格单元格样式 */ table.reply td { border:1px solid black; padding:3px; } /* 回帖表格表头样式 */ table.reply td.title { background:#003366; color:#ffffff; } /* 表单元素样式 */ input, textarea { border:1px solid black; } /* 文字区域样式 */ textarea { width:200px; height:50px; } /* 预定义格式样式 */ pre { margin:0; }
以上就是本文的全部内容,希望对大家的学习有所帮助。
上一篇: 寿司饭怎么煮?看完你就全明白啦