Jquery 获取带有换行符的 Textarea.val()
我需要将文本输入到 textarea 中并检测换行符(最好是
)。我跟踪它直到服务器端,并确信有换行符,因为我正在使用 .val()
打印该值。在服务器端,我访问相同的控件值,但没有看到换行符。我开始认为 '\n 不会出现在服务器端。我真的不想用一个字符替换所有换行符。
有什么想法吗?
谢谢
I need to get the text entered into textarea and detect newlines (preferably <br>
). I traced it until serverside and am sure that there are newlines because I'm printing the value with .val()
. On serverside, I access to the same controls value and I see no newlines. I'm starting to think that '\n's don't appear on server side. I really don't want to replace all newlines with a character.
Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我在服务器端获取 NewLines 所做的事情:
抱歉格式错误。我是新来的,不擅长格式化代码。希望它有帮助。
汉莱特
This is what I did to get NewLines in the server side:
Sorry for the bad format. I am very new here and am not good at formatting code. Hopefully it helps.
Hanlet
我可以猜测,如果您尝试以良好的格式渲染
textarea
,您可以使用换行符看到它,所以您只需使用:
I could guess that, if you try to render a
textarea
with nice format, you can see it with newline charaterSo you just use:
<textarea></textarea>
.