JS与jQuery判断文本框还剩多少字符可以输入的方法


Posted in jQuery onSeptember 01, 2018

本文实例讲述了JS与jQuery判断文本框还剩多少字符可以输入的方法。分享给大家供大家参考,具体如下:

javascript部分:

function $(id) {
  return document.getElementById(id);
}
var maxLen=255;
function checkMaxInput(){
  if($("summary").value.length>maxLen){
    $("summary").value=$("summary").value.substring(0,maxLen);
  }else{
    $("leaves").innerHTML=maxLen-$("summary").value.length;
  }
}

HTML部分:

<tr>
 <td>摘要:</td>
 <td>
  <html:textarea property="summary" rows="5" cols="60" onkeyup="checkMaxInput()"/>
  <br>
   还可以输入<span class="red" id="leaves">255</span>个字符
  </td>
</tr>

jQuery插件textlimit实现Javascript统计和限制字符个数功能

使用jQuery插件textlimit可以实现统计和限制字符个数功能,可应用于文本框与文本区域,当输入文字时textlimit插件会及时统计当前文本框与文本区域中的字符个数,如果达到限制数则不允许输入,同时可设置字符删除速度,

使用实例

一、包含文件部分

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="textlimit.js"></script>

二、HTML部分

<input type="text" name="test" value="" id="test" /><span>20</span>/256

三、Javascript部分

<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#test").textlimit("span",256);
});
</script>

当在ID为test的文本框中输入文字时,textlimit插件统计当前输入字符个数并显示在一个span的元素中,如上效果图,textlimit接口如下:

textlimit(counter_el, thelimit, speed)

接口参数说明:

  • counter_el表示显示当前统计个数的选择器标签,如:span
  • thelimit表示限制个数,也就是最多可输入的个数,如:256
  • speed表示删除字符速度,默认为15,注意,如果不需要可设置为-1,但不能是0

注意:英文字符与汉字字符都统计为一个字符

textlimit插件统计和限制字符数非常简单,具体大家可以看看textlimit的库文件,非常值得推荐。

/*
 * TextLimit - jQuery plugin for counting and limiting characters for input and textarea fields
 *
 * pass '-1' as speed if you don't want the char-deletion effect. (don't just put 0)
 * Example: jQuery("Textarea").textlimit('span.counter',256)
 *
 * $Version: 2009.07.25 +r2
 * Copyright (c) 2009 Yair Even-Or
 * vsync.design@gmail.com
*/
(function(jQuery) {
  jQuery.fn.textlimit=function(counter_el, thelimit, speed) {
    var charDelSpeed = speed || 15;
    var toggleCharDel = speed != -1;
    var toggleTrim = true;
    var that = this[0];
    var isCtrl = false;
    updateCounter();
    function updateCounter(){
      if(typeof that == "object")
        jQuery(counter_el).text(thelimit - that.value.length+" characters remaining");
    };
    this.keydown (function(e){
      if(e.which == 17) isCtrl = true;
      var ctrl_a = (e.which == 65 && isCtrl == true) ? true : false; // detect and allow CTRL + A selects all.
      var ctrl_v = (e.which == 86 && isCtrl == true) ? true : false; // detect and allow CTRL + V paste.
      // 8 is 'backspace' and 46 is 'delete'
      if( this.value.length >= thelimit && e.which != '8' && e.which != '46' && ctrl_a == false && ctrl_v == false)
        e.preventDefault();
    })
    .keyup (function(e){
      updateCounter();
      if(e.which == 17)
        isCtrl=false;
      if( this.value.length >= thelimit && toggleTrim ){
        if(toggleCharDel){
          // first, trim the text a bit so the char trimming won't take forever
          // Also check if there are more than 10 extra chars, then trim. just in case.
          if ( (this.value.length - thelimit) > 10 )
            that.value = that.value.substr(0,thelimit+100);
          var init = setInterval
            (
              function(){
                if( that.value.length <= thelimit ){
                  init = clearInterval(init); updateCounter()
                }
                else{
                  // deleting extra chars (one by one)
                  that.value = that.value.substring(0,that.value.length-1); jQuery(counter_el).text('Trimming... '+(thelimit - that.value.length));
                }
              } ,charDelSpeed
            );
        }
        else this.value = that.value.substr(0,thelimit);
      }
    });
  };
})(jQuery);
jQuery 相关文章推荐
全面解析jQuery中的$(window)与$(document)的用法区别
Aug 15 jQuery
解决IE7中使用jQuery动态操作name问题
Aug 28 jQuery
HTML5+JS+JQuery+ECharts实现异步加载问题
Dec 16 jQuery
使用Ajax和Jquery配合数据库实现下拉框的二级联动的示例
Jan 25 jQuery
jQuery实现炫丽的3d旋转星空效果
Jul 04 jQuery
jQuery easyui datagird编辑行删除行功能的实现代码
Sep 20 jQuery
详解jQuery中的getAll()和cleanData()
Apr 15 jQuery
jQuery操作cookie的示例代码
Jun 05 jQuery
jQuery+ajax实现批量删除功能完整示例
Jun 06 jQuery
jQuery实现图片下载代码
Jul 18 jQuery
jQuery实时统计输入框字数及限制
Jun 24 jQuery
jQuery zTree如何改变指定节点文本样式
Oct 16 jQuery
jQuery解析json格式数据示例
Sep 01 #jQuery
jQuery实现表格隔行换色
Sep 01 #jQuery
基于jQuery ztree实现表格风格的树状结构
Aug 31 #jQuery
解决jQuery使用append添加的元素事件无效的问题
Aug 30 #jQuery
jQuery实现的简单手风琴效果示例
Aug 29 #jQuery
jQuery实现的淡入淡出图片轮播效果示例
Aug 29 #jQuery
jQuery实现的响应鼠标移动方向插件用法示例【附源码下载】
Aug 28 #jQuery
You might like
php表单提交实例讲解
2015/11/12 PHP
PHP两种实现无级递归分类的方法
2017/03/02 PHP
Javascript this关键字使用分析
2008/10/21 Javascript
jQuery 事件队列调整方法
2009/09/18 Javascript
简单时间提示DEMO从0开始一直进行计时
2013/11/19 Javascript
JavaScript中的连字符详解
2013/11/28 Javascript
js验证输入是否为手机号码或电话号码示例
2013/12/30 Javascript
jquery实现图片按比例缩放示例
2014/07/01 Javascript
微信WeixinJSBridge API使用实例
2015/05/25 Javascript
JS实现无限级网页折叠菜单(类似树形菜单)效果代码
2015/09/17 Javascript
9个让JavaScript调试更简单的Console命令
2016/11/14 Javascript
Vue.js 递归组件实现树形菜单(实例分享)
2016/12/21 Javascript
Angularjs2不同组件间的通信实例代码
2017/05/06 Javascript
jQuery dateRangePicker插件使用方法详解
2017/07/28 jQuery
node.js之基础加密算法模块crypto详解
2018/09/11 Javascript
vue实现权限控制路由(vue-router 动态添加路由)
2019/11/04 Javascript
Javascript地址引用代码实例解析
2020/02/25 Javascript
Postman参数化实现过程及原理解析
2020/08/13 Javascript
在Python的Flask框架下使用sqlalchemy库的简单教程
2015/04/09 Python
python类继承用法实例分析
2015/05/27 Python
Python使用三种方法实现PCA算法
2017/12/12 Python
Python中的枚举类型示例介绍
2019/01/09 Python
python3实现微型的web服务器
2019/09/03 Python
python 如何去除字符串头尾的多余符号
2019/11/19 Python
keras中epoch,batch,loss,val_loss用法说明
2020/07/02 Python
2020版Python学习路线图(附学习资料)
2020/09/15 Python
印尼最大的在线购物网站:MatahariMall.com
2016/08/26 全球购物
软件测试工程师笔试题带答案
2015/03/27 面试题
卫校中专生个人自我评价
2013/09/19 职场文书
车间主任岗位职责
2014/03/16 职场文书
分公司经理任命书
2014/06/05 职场文书
2014教师党员个人自我评议
2014/09/20 职场文书
因身体原因离职的辞职信范文
2015/05/12 职场文书
Python实现文本文件拆分写入到多个文本文件的方法
2021/04/18 Python
防止web项目中的SQL注入
2021/12/06 MySQL
js判断两个数组相等的5种方法
2022/05/06 Javascript