Count textarea characters

前端 未结 11 2086
走了就别回头了
走了就别回头了 2020-11-28 07:29

I am developing a character count for my textarea on this website. Right now, it says NaN because it seems to not find the length of how many characters are in the field, wh

11条回答
  •  天涯浪人
    2020-11-28 08:10

    Here is simple code. Hope it is working

    $(document).ready(function() {
    var text_max = 99;
    $('#textarea_feedback').html(text_max + ' characters remaining');
    
    $('#textarea').keyup(function() {
        var text_length = $('#textarea').val().length;
        var text_remaining = text_max - text_length;
    
        $('#textarea_feedback').html(text_remaining + ' characters remaining');
    });
    
    });
    
    
    

提交回复
热议问题