我想在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.
有什么建议么 ?
我想在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);
添加“\n”应该可以完成这项工作。
尝试这个:
javascript:
var textpara = "This is dummy text." + "\n" + "It will blink and then show.";
alert(textpara);
在浏览器的 url 栏上。
我已经测试过它并且它有效
尝试这个 :
<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.