首页 > 网站 > 建站经验 > 正文

齐博cms评论表单中怎么限制用户填的最小字符数

2024-04-25 20:34:36
字体:
来源:转载
供稿:网友

template/default/bencandy_tpl/comment.htm

修改这个文件

function post_comment(cid){

var str="";

if(cid!=undefined){ //引用回复

str="_"+cid;

}

在这段代码下加上

if(document.getElementById("comment_content"+str).value.length < '100'){

alert('字符数不能少于100!');

return false;

}

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表