how to get the value of a textarea in jquery?

前端 未结 12 2117
甜味超标
甜味超标 2020-11-27 17:55

i have this form and im trying to get the value from the text area. for some reason it doesn\'t want to.

12条回答
  •  一个人的身影
    2020-11-27 18:20

    You don't need to use .html(). You should go with .val().

    From the doc of .val():

    The .val() method is primarily used to get the values of form elements such as input, select and textarea. When called on an empty collection, it returns undefined.

    var message = $('#message').val();
    

提交回复
热议问题