美文网首页
jquery统计输入框字数

jquery统计输入框字数

作者: X_JX | 来源:发表于2019-01-17 16:01 被阅读14次
    $(document).ready(function(){
         $('#comment').on('input propertychange', function() {
             var count = $.trim($(this).val()).length;
             $('#tip').html("已输入 "+ count +" 个字。");
         });
     });
    

    需要注意的是对于表情符号的字符此方法按2个字符技术,对于php的mb_strlen方法则按一个字符技术

    相关文章

      网友评论

          本文标题:jquery统计输入框字数

          本文链接:https://www.haomeiwen.com/subject/ocvidqtx.html