我知道加入空格是 但是不知道怎么加进去,求帮忙~
<!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>
document.write("hello" + " world")
document.writeln("Hello");
document.write("&Nbsp;");
 是在里面加入空格的代码
不知道你是想加在什么地方,加在文本中的话直接写成“ HELLO”代表HELLO前面有一个空格,要多个空格就加多个