如何在JavaScript警报框中提供换行?
本文向大家介绍如何在JavaScript警报框中提供换行?,包括了如何在JavaScript警报框中提供换行?的使用技巧和注意事项,需要的朋友参考一下
要在JavaScript警报框中添加新行,请使用“ \ n”:
alert("Line One\n Line Two");
示例
您可以尝试运行以下代码,在JavaScript的警报框中添加新行:
<html> <head> <script> <!-- function Warn() { alert ("这是警告消息!\nThis is a new line."); document.write ("这是警告消息!"); } //--> </script> </head> <body> <p>Click the following button to see the result: </p> <form> <input type="button" value="Click Me" onclick="Warn();" /> </form> </body> </html>