javascript - Type new line character in Element.TextContent - Stack Overflow

I am trying to generate a textual content in a web application. I want a text to appear into a header e

I am trying to generate a textual content in a web application. I want a text to appear into a header element <h1> but the text must contain newline breaks.

First attempt

var el = document.getElementById("myel");
var newline = "\r\n";
var nbsp = "\u00a0";
el.textContent = "My awesome" + newline + "web" + nbsp + "application";

This is not working. I mean in the developer tools, by inspecting the DOM, I can see the text being broken between "awesome" and "web", but the browser does not render it that way: the text is all on the same line but at least the non breaing space (which is correctly rendered like &nbsp) is there.

Trying <br/>.

If I try to use <br/>, I must use innerHTML:

var el = document.getElementById("myel");
var newline = "<br/>";
var nbsp = "&nbsp";
el.innerHTML = "My awesome" + newline + "web" + nbsp + "application";

So there is no way I can get my problem solved by using textContent? I would really like avoiding innerHTML.

I am trying to generate a textual content in a web application. I want a text to appear into a header element <h1> but the text must contain newline breaks.

First attempt

var el = document.getElementById("myel");
var newline = "\r\n";
var nbsp = "\u00a0";
el.textContent = "My awesome" + newline + "web" + nbsp + "application";

This is not working. I mean in the developer tools, by inspecting the DOM, I can see the text being broken between "awesome" and "web", but the browser does not render it that way: the text is all on the same line but at least the non breaing space (which is correctly rendered like &nbsp) is there.

Trying <br/>.

If I try to use <br/>, I must use innerHTML:

var el = document.getElementById("myel");
var newline = "<br/>";
var nbsp = "&nbsp";
el.innerHTML = "My awesome" + newline + "web" + nbsp + "application";

So there is no way I can get my problem solved by using textContent? I would really like avoiding innerHTML.

Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Jun 23, 2015 at 12:17 AndryAndry 16.9k30 gold badges156 silver badges265 bronze badges 1
  • The \r\n sign is only seen in the code view mode. It is a line break for a code not for an HTML. Afaik you cannot create line breaks by setting the textContent of an element. Only if the text get the end of line. – iamawebgeek Commented Jun 23, 2015 at 12:21
Add a ment  | 

1 Answer 1

Reset to default 12

Use CSS white-space: pre; with "\r\n":

var el = document.getElementById("myel");
var newline = "\r\n";
var nbsp = "\u00a0";
el.textContent = "My awesome" + newline + "web" + nbsp + "application";
#myel {
  white-space: pre;
}
<h1 id="myel"></h1>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743650031a4484412.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信