js document.write()输出换行 JavaScript用document.write()输出换行的代码实例
牛哄哄的柯南 人气:0当我们想用document.write()输出换行时,可能会第一时间想到加"\n",但是其实不能达到我们的想要效果,只会得到一个空格的效果。
正确的方法是使用:</br>
样例代码:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script> // 使用 \n 换行 ---> 错误的方法 document.write("这是第一句话。" + "\n"); // 并不会换行,只会得到一个空格的效果 document.write("这是第二句话。"); document.write("</br>"); // 正确的换行 document.write("</br>"); document.write("</br>"); // 使用正确的方法 </br> 换行 document.write("这是第一句话。。" + "</br>"); document.write("这是第二句话。。"); </script> <title></title> </head> <body> </body> </html>
效果截图:
加载全部内容