美文网首页
移动端监听textarea标签中内容字数限制(兼容iOS和And

移动端监听textarea标签中内容字数限制(兼容iOS和And

作者: shougg22 | 来源:发表于2018-07-11 16:34 被阅读0次
      // 监听审核意见内容字数,不能超过300字
        var checkStrLengths = function (str, maxLength) {
            var maxLength = maxLength;
            var result = 0;
            if (str && str.length > maxLength) {
                result = maxLength;
            } else {
                result = str.length;
            }
            return result;
        }
        //监听输入
        $(".wishContent").on('input propertychange', function () {
    
            //获取输入内容
            var userDesc = $(this).val();
    
            //判断字数
            var len;
            if (userDesc) {
                len = checkStrLengths(userDesc, 15);
            } else {
                len = 0
            }
    
            //显示字数
            $(".wordsNum").html(len + '/15');
        });
    

    参考来源:https://blog.csdn.net/qq_39635302/article/details/79477572

    相关文章

      网友评论

          本文标题:移动端监听textarea标签中内容字数限制(兼容iOS和And

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