<!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>
这一段我在hello和world之间加<br />但是没反应,不显示任何结果,请问一下是哪里的问题呢
不能在js里嵌套html,但是换行支持document.write("Hello"+"<br>");
可以在"hello"里面加入<br/>,这样也可以换行