gpt4 book ai didi

javascript - 尝试用 Javascript 进行换行

转载 作者:行者123 更新时间:2023-11-28 13:24:21 25 4
gpt4 key购买 nike

尝试使用 javascript 换行,但不起作用。

document.getElementById('section').textContent = "Hello world<br>" + msg;

我也尝试过:

document.getElementById('section').textContent = "Hello world" + /n msg;

也不起作用..我错过了什么吗?

最佳答案

目前,您正在添加文字文本,而不是 HTML <br>元素。您要么想要设置innerHTML元素的...

document.getElementById('section').innerHTML = "Hello world<br>";

...或创建文本和 <br>元素并将其附加到文档中。

var text = document.createTextNode("Hello world"),
break = document.createElement("br"),
section = document.getElementById("section");
section.appendChild(text);
section.appendChild(section);

关于javascript - 尝试用 Javascript 进行换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30315182/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com