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 submit()不能提交表单的解决方法
Apr 24 jQuery
jquery处理checkbox(复选框)是否被选中实例代码
Jun 12 jQuery
简述jQuery Easyui一些用法
Aug 01 jQuery
简单实现jQuery轮播效果
Aug 18 jQuery
jQuery+HTML5实现WebGL高性能烟花绽放动画效果【附demo源码下载】
Aug 18 jQuery
jQuery实现的简单无刷新评论功能示例
Nov 08 jQuery
jQuery进阶实践之利用最优雅的方式如何写ajax请求
Dec 20 jQuery
jQuery中可见性过滤器简单用法示例
Mar 31 jQuery
jQuery+CSS实现的标签页效果示例【测试可用】
Aug 14 jQuery
基于JavaScript或jQuery实现网站夜间/高亮模式
May 30 jQuery
jQuery实现图片切换效果
Oct 19 jQuery
jquery实现广告上下滚动效果
Mar 04 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简单实现DES加密解密的方法
2016/07/12 PHP
ThinkPHP5&amp;5.1实现验证码的生成、使用及点击刷新功能示例
2020/02/07 PHP
jQuery 瀑布流 浮动布局(一)(延迟AJAX加载图片)
2012/05/23 Javascript
Javascript判断对象是否相等实现代码
2013/03/18 Javascript
jQuery中get和post方法传值测试及注意事项
2014/08/08 Javascript
jquery文档操作wrap()方法实例简述
2015/01/10 Javascript
javascript定义变量时带var与不带var的区别分析
2015/01/12 Javascript
javascript文本模板用法实例
2015/07/31 Javascript
基于jQuery插件实现点击小图显示大图效果
2016/05/11 Javascript
JS实现pasteHTML兼容ie,firefox,chrome的方法
2016/06/22 Javascript
jQuery实现拖拽可编辑模块功能代码
2017/01/12 Javascript
微信小程序 点击控件后选中其它反选实例详解
2017/02/21 Javascript
vue父组件向子组件(props)传递数据的方法
2018/01/02 Javascript
在微信小程序中渲染HTML内容的方法示例
2018/09/28 Javascript
angular使用md5,CryptoJS des加密的方法
2019/06/03 Javascript
这15个Vue指令,让你的项目开发爽到爆
2019/10/11 Javascript
浅谈Vue SSR中的Bundle的具有使用
2019/11/21 Javascript
JS实现网页时钟特效
2020/03/25 Javascript
VueCli4项目配置反向代理proxy的方法步骤
2020/05/17 Javascript
如何在Python中编写并发程序
2016/02/27 Python
Python中防止sql注入的方法详解
2017/02/25 Python
numpy中索引和切片详解
2017/12/15 Python
基于tensorflow加载部分层的方法
2018/07/26 Python
Python模拟简单电梯调度算法示例
2018/08/20 Python
python中open函数的基本用法示例
2019/09/07 Python
Python笔记之代理模式
2019/11/20 Python
python实现双色球随机选号
2020/01/01 Python
python爬虫实现获取下一页代码
2020/03/13 Python
使用Keras实现简单线性回归模型操作
2020/06/12 Python
linux比较文件内容的命令是什么
2015/09/23 面试题
2019各种承诺书范文
2019/06/24 职场文书
如何书写授权委托书?
2019/06/25 职场文书
如何用PHP websocket实现网页实时聊天
2021/05/26 PHP
Python标准库之typing的用法(类型标注)
2021/06/02 Python
vue的项目如何打包上线
2022/04/13 Vue.js
Golang 入门 之url 包
2022/05/04 Golang