我已经看到了一些关于如何在JavaScript字符串中添加新行的问题。他们中的大多数人都建议使用\n
。我试过了,但是我的HTML上没有插入新行。
相反,我得到以下内容:
<strong>This is the first line
This is the second line</strong>
这是我的字符串:
var myString = "This is the first line \n This is the second line";
有关如何在我的HTML上插入插页的任何想法吗?
答案 0 :(得分:4)
如果你想在html中使用新行,你需要一些像<br />
这样的元素。实际上,每个块样式元素都可以,但<br />
默认情况下不会添加任何边距/填充,如f。一世。一个<p>
或<h3>
会。无论如何,打破行html需要任何元素,因为浏览器会忽略“\ n”,“\ t”等等。