Javascript how to split newline

后端 未结 12 1916
一整个雨季
一整个雨季 2020-11-28 06:48

I\'m using jquery, and I have a textarea. When I submit by my button I will alert each text separated by newline. How to split my text when there is a newline?



        
12条回答
  •  渐次进展
    2020-11-28 07:14

    Since you are using textarea, you may find \n or \r (or \r\n) for line breaks. So, the following is suggested:

    $('#keywords').val().split(/\r|\n/)

    ref: check whether string contains a line break

提交回复
热议问题