Jquery 获取带有换行符的 Textarea.val()

发布于 2024-12-06 02:19:08 字数 199 浏览 0 评论 0原文

我需要将文本输入到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

污味仙女 2024-12-13 02:19:08

这就是我在服务器端获取 NewLines 所做的事情:

string TextAreaText = txt.InnerHtml;
string ReplacedText = TextAreaText.Replace(System.Environment.NewLine, "<br />");
Response.Write(ReplacedText);

抱歉格式错误。我是新来的,不擅长格式化代码。希望它有帮助。

汉莱特

This is what I did to get NewLines in the server side:

string TextAreaText = txt.InnerHtml;
string ReplacedText = TextAreaText.Replace(System.Environment.NewLine, "<br />");
Response.Write(ReplacedText);

Sorry for the bad format. I am very new here and am not good at formatting code. Hopefully it helps.

Hanlet

¢好甜 2024-12-13 02:19:08

我可以猜测,如果您尝试以良好的格式渲染 textarea ,您可以使用换行符看到它,

<textarea>
</textarea>

所以您只需使用:

I could guess that, if you try to render a textarea with nice format, you can see it with newline charater

<textarea>
</textarea>

So you just use: <textarea></textarea>.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文