<h1style="color:green;">
GeeksforGeeks
</h1><p>
Click on the button to pop
alert box with added new line.
</p><buttononclick="gfg_Run()">
click here
</button><script>var text ="This is line 1\nThis is line 2";function gfg_Run(){
alert(text);}</script>
HTML
输出:
示例2: 这个示例在文本 警报框 的3行之间添加了 \n 。
<h1style="color:green;">
GeeksForGeeks
</h1><p>
Click on the button to pop
alert box with added new line.
</p><buttononclick="gfg_Run()">
click here
</button><script>var text ="This is first line\nThis is "+"middle line\nThis is last line";function gfg_Run(){
alert(text);}</script>