gpt4 book ai didi

javascript - 使用 jquery .text() 方法向文本字符串添加新行

转载 作者:行者123 更新时间:2023-11-27 22:47:01 25 4
gpt4 key购买 nike

当我这样做时:

function testtext()
{
var text = "test line 1\n\
test line 2"
;
$("#divtext").text(text);
}

全部显示在一行中。当我这样做时:

function testtext()
{
var text = "test line 1\n\
test line 2"
;
document.getElementById("divtext").innerText = text;
}

工作正常...

最佳答案

使用$("#divtext").html(text);

代替 $("#divtext").text(text);

关于javascript - 使用 jquery .text() 方法向文本字符串添加新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6577201/

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