在文本区域中保留空格(JavaScript 变量)
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个函数,您可以将其用于您的脚本:
here is a function , you can use for your script:
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你的意思是所有换行符?默认情况下,HTML 会忽略换行符并折叠空格。将它们打印在
您还可以用
标签使用:You mean all newlines? HTML ignores newlines and collapses whitespace by default. Print them inside a
<pre>
tag, or check out the CSSwhite-space
property: http://www.w3schools.com/cssref/pr_text_white-space.aspYou can also replace newlines with
<br>
tags using: