我正在使用.net多行控件。我使用jQuery从该控件获取数据:

$('.detailsCommentContent').val()


在这一刻,当我提醒您可以看到新行的价值时。

然后我发出请求www.example.com?commentContent= + "$('.detailsCommentContent').val()"

并且在http请求中,目前没有newLines标志。

我该怎么做才能保留这个新的Lines符号?

感谢帮助

最佳答案

您将需要对该值进行URL编码:

var url = "http://www.yourpage.com?commentContent=" +
  encodeURIComponent($('.detailsCommentContent').val());

关于javascript - 在javascript中传递新行以获取参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7334194/

10-09 09:07