本文为大家讲解的是js代码如何实现换行的方法,感兴趣的同学参考下。
示例:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>认识语句</title>
<script type="text/javascript">
document.write("Hello");
document.write("World");
</script>
</head>
<body>
</body>
</html>
浏 览器里面输出:HelloWorld,并没有换行,要换行需要输出<br>如document.write("<br>");或者把 document.write("Hello")改为document.write("Hello"+“<br>”);分好只是表示一句结束