how to get the value of a textarea in jquery?

前端 未结 12 2070
甜味超标
甜味超标 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:09

    all Values is always taken with .val().

    see the code bellow:

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

提交回复
热议问题