欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-06 16:43:58
本文实例讲述了js与jquery判断文本框还剩多少字符可以输入的方法。分享给大家供大家参考,具体如下: javascript部分: function $(id)...

本文实例讲述了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);

ps:这里再为大家推荐两款相关在线工具供大家参考:

字数统计工具:

在线字符统计与编辑工具:

更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript数学运算用法总结》、《javascript数据结构与算法技巧总结》、《javascript数组操作技巧总结》、《javascript事件相关操作与技巧大全》、《javascript操作dom技巧总结》及《javascript字符与字符串操作技巧总结

希望本文所述对大家javascript程序设计有所帮助。