使用emlog博客程序的朋友,大部分可能经常遇到一些垃圾评论,以前有写过一篇《
给EMLOG评论框加上√防止垃圾评论》,今天讲的教程可以和上面的同时使用的。以下教程以默认模板为例
第一步、在全局js中加入如下代码:里面的一些正则可以自行替换成你想要的
function SLyz(){
if(document.commentform.comname.value.length == 0){alert("请输入昵称");document.commentform.comname.focus();return false;}
var reg = /^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/;if(document.commentform.commail.value.length == 0 && !reg.test(document.commentform.commail.value)){alert("1、邮箱地址是否填写 \r\n2 、邮箱地址是否正确");document.commentform.commail.focus();return false;}
var reg = /^(http:\/\/|https:\/\/)([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$/;if(!reg.test(document.commentform.comurl.value) && (document.commentform.comurl.value)){alert("网址格式必须加http://或https://且网址结尾不能有“/”;次选为选填项,可不填写");document.commentform.comurl.focus();return false;}
if(document.commentform.comment.value.length == 0){alert("请填写评论内容且评论内容需包含中文");document.xj.comment.focus();return false;}
}
第二步、在模板文件module.php中找到代码
<form method="post" name="commentform" action="<?php echo BLOG_URL; ?>index.php?action=addcom" id="commentform">
修改为下面代码
<form method="post" name="commentform" action="<?php echo BLOG_URL; ?>index.php?action=addcom" id="commentform" onSubmit="return SLyz();">
以上2步就完成了
日期:2017年06月03日 21:28:00 星期六 分类:
好文分享 浏览(42751)
评论(1)本文地址:https://www.blogs.hk/post-2411.html [
百度已收录]
声明:本页信息由网友自行发布或来源于网络,真实性、合法性由发布人负责,请仔细甄别!本站只为传递信息,我们不做任何双方证明,也不承担任何法律责任。文章内容若侵犯你的权益,请联系本站删除!
留言咨询