how to get the value of a textarea in jquery?

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

    You should check the textarea is null before you use val() otherwise, you will get undefined error.

    if ($('textarea#message') != undefined) {
       var message = $('textarea#message').val();
    }
    

    Then, you could do whatever with message.

提交回复
热议问题