帝国cms内容简介是什么(帝国cms教程官方完整版)
内容介绍(小文本)加上输入字数统计
方法一、统计输入的字符数
smalltext添加js提示并统计输入字数
将以下小文本字段放入html 表单中
textarea name='smalltext' cols='80' rows='10' id='smalltext'?=$ecmsfirstpost==1?'':ehtmlspecialchars(stripSlashes($r[smalltext]))?/textarea
用。来代替
脚本语言='javascript'
函数countChar(textareaNamezzjs,spanName){
document.getElementById(spanName).innerHTML=document.getElementById(textareaNamezzjs).value.length;
}
/脚本
已输入span id='counter' style='color:#ff0000'0/span word br
textarea id='smalltext' name='smalltext' cols='80' rows='10' onkeydown='countChar('smalltext','counter');' onkeyup='countChar('smalltext','counter'); '?=$ecmsfirstpost==1?'':ehtmlspecialchars(stripSlashes($r[smalltext]))?/textarea
-------------------------------------------------- -------------------------------------------------- -----
方法二:统计输入的字符数并限制数量
将以下小文本字段放入html 表单中
textarea name='smalltext' cols='80' rows='10' id='smalltext'?=$ecmsfirstpost==1?'':ehtmlspecialchars(stripSlashes($r[smalltext]))?/textarea
用。来代替
脚本语言='JavaScript'
!--//
函数textCounter(字段、计数字段、最大限制)
{
if (字段.值.长度最大限制)
field.value=field.value.substring(0, maxlimit);
别的
countfield.value=maxlimit - field.value.length;
}
//--
/脚本
textarea name='smalltext' cols='80' rows='10' id='smalltext' onMouseOver='textCounter(this.form.smalltext,this.form.remLen,160);'
onKeyUp='textCounter(this.form.smalltext,this.form.remLen,160);'?=$ecmsfirstpost==1?'':ehtmlspecialchars(stripSlashes($r[smalltext]))?/textarea FONT color=#999999您还可以输入input readonly style='TEXT-ALIGN:center;height:18px;'类型=文本名称=remLen大小=2最大长度=2值='160'字。