⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jscript_textarea_counter.js

📁 Zen Cart是真正的电子商务艺术
💻 JS
字号:
/* javascript function to update form field *  field		form field that is being counted *  count		form field that will show characters left *  maxchars 	maximum number of characters*/function characterCount(field, count, maxchars) {  var realchars = field.value.replace(/\t|\r|\n|\r\n/g,'');  var excesschars = realchars.length - maxchars;  if (excesschars > 0) {		field.value = field.value.substring(0, excesschars);		alert("Error:\n\n- You are only allowed to enter up to"+maxchars+" characters.");	} else {		count.value = maxchars - realchars.length;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -