gpt4 book ai didi

javascript - 如何在 javascript 中添加换行符?

转载 作者:行者123 更新时间:2023-12-02 18:18:57 26 4
gpt4 key购买 nike

我想在 JavaScript 中添加换行符。我用过<br/>, \n and %0D%0A但什么也没发生。

这是我的代码:

var textpara = 'This is dummy text. It will blink and then show.';

我想要这个:

This is dummy text.
It will blink and then show.

有什么建议吗?

最佳答案

如果你想在控制台中显示文本,你可以使用反斜杠换行技巧:

var textpara = 'This is dummy text. \
It will blink and then show.';

console.log(textpara);

或者,添加换行符,如下所示:

var textpara = "This is dummy text. \nIt will blink and then show.";
console.log(textpara);

关于javascript - 如何在 javascript 中添加换行符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19019693/

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