0

我想在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.

有什么建议么 ?

4

3 回答 3

1

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

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);
于 2013-09-26T05:02:21.660 回答
1

添加“\n”应该可以完成这项工作。

尝试这个:

javascript:

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

alert(textpara);

在浏览器的 url 栏上。

我已经测试过它并且它有效

于 2013-09-26T05:02:33.803 回答
0

尝试这个 :

<script lang="JavaScript" >
var textpara = 'This is dummy text. <br/>It will blink and then show.';
document.write(textpara);
</script>

这也有效。

输出:

This is dummy text. 
It will blink and then show.
于 2013-09-26T05:14:12.007 回答