在文本区域中保留空格(JavaScript 变量)

发布于 2025-01-03 00:55:21 字数 95 浏览 1 评论 0原文

我在 JavaScript 中有一个变量,其中包含 html 文本区域的内容。当我打印变量时,用户输入的所有内容都会被忘记。有没有办法找到字符串中的空格,以便我可以分隔每一行?

I have a variable in JavaScript that contains the contents of an html textarea. When I print the variable all that were entered by the user are forgotten. Is there any way to find the spaces in the string so I can separate each line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

浅黛梨妆こ 2025-01-10 00:55:21

这是一个函数,您可以将其用于您的脚本:

function nl2br (str) {
 var breakTag = ''; return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1'+ breakTag +'$2'); 
}

here is a function , you can use for your script:

function nl2br (str) {
 var breakTag = ''; return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1'+ breakTag +'$2'); 
}
め可乐爱微笑 2025-01-10 00:55:21

HTML 折叠 相邻空白 - 因此,如果您在HTML,这就是您所看到的。

您可以将空格替换为不间断空格:  - 这将确保它们以 HTML 形式显示并且不会折叠。

另一种选择是将它们放在 < pre> 元素

HTML collapses adjacent whitespace - so if you are displaying within HTML, that's what you are seeing.

You can replace spaces with non break spaces:   - this will ensure they are displayed in HTML and not collapsed.

Another option is to place them in a <pre> element

哎呦我呸! 2025-01-10 00:55:21

你的意思是所有换行符?默认情况下,HTML 会忽略换行符并折叠空格。将它们打印在

 标记内,或查看 CSS white-space 属性:http://www.w3schools.com/cssref/pr_text_white-space.asp

您还可以用
标签使用:

while (str.indexOf("\n") > -1) str = str.replace("\n","<br>");

You mean all newlines? HTML ignores newlines and collapses whitespace by default. Print them inside a <pre> tag, or check out the CSS white-space property: http://www.w3schools.com/cssref/pr_text_white-space.asp

You can also replace newlines with <br> tags using:

while (str.indexOf("\n") > -1) str = str.replace("\n","<br>");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文