document.write("Hello");
document.write("World");
他们都是文本节点,默认的属性display是inline,所以会紧挨着显示
厉害了
这样的
我试了一下换行,见如下代码:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>认识语句</title>
<script type="text/javascript">
document.write("hello"+"<br>");
document.write("world");
</script>
</head>
<body>
</body>
</html>
document.write("Hello"+<br/>);换行
document.write("Hello"+" ");空格
这个记住就可以了,就是这样的 本来就没有间隙!切记!