我想用textarea的值替换所有\n
和。我怎么能这样做?
我想要这样的事情:
$('textarea').val().replace('/\n+/',"");
实际上这是当前值:
var TextareaValue = "this
is
a
test";
现在我想要这个:
var NewTextareaValue = "this is a test";