Count textarea characters

前端 未结 11 2048
走了就别回头了
走了就别回头了 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:05

    For those wanting a simple solution without jQuery, here's a way.

    textarea and message container to put in your form:

    
    Length 
    

    JavaScript:

    
    

    The script counts the characters initially and then for every keystroke and puts the number in the counter span.

    Martin

提交回复
热议问题