<html>
<head>
<script>
document.write(“Hello There!”);
document.write(“I’m a Boy”);
</script>
</head>
</html>
答案 0 :(得分:3)
您可以使用
添加空格。
喜欢
<html>
<head>
<script>
document.write("Hello There!");
document.write(" ");
document.write("I’m a Boy");
</script>
</head>
</html>
答案 1 :(得分:0)
尝试下面的代码-
document.write("Hello There!");
document.write("\u00A0\u00A0\u00A0\u00A0I’m a Boy");
答案 2 :(得分:0)
如果要添加换行符,请使用<br />
(而不是\n
,因为您正在编写HTML):
document.write("Hello There!");
document.write("<br />");
document.write("I'm a Boy!");
如果要空格,只需写一个空格:
document.write("Hello There!");
document.write(" ");
document.write("I'm a Boy!");
答案 3 :(得分:0)
最基本的答案是在字符串的末尾添加一个空格:
document.write("Hello There! ");
document.write("Hello There!");
Hello There! Hello There!
是结果。
如果要使用1个以上的空间,则必须使用牢不可破的空间:
document.write("Hello There! ");
document.write("Hello There!");
如果这只是一个有趣的练习,那很好,但是通常情况下,您不想使用空格进行样式设置。您应该将文本包装在p
或其他html元素中,并使用CSS。
答案 4 :(得分:0)
您只需要在要添加空间的位置添加
。
<script>
document.write(“Hello There! I am boy”);
</script>