如何使用JavaScript在2个单词之间创建空格?

时间:2019-02-27 04:10:15

标签: javascript

JavaScript代码

<html>
<head>
<script>
document.write(“Hello There!”);
document.write(“I’m a Boy”);
</script>
</head>
</html>

  • >这里有2个document.write部分。当显示输出时,我们应该如何在这两个之间创建空白。就像一行一样,您好! (例如,至少有4个空格)我是男孩

5 个答案:

答案 0 :(得分:3)

您可以使用&nbsp;添加空格。

喜欢

<html>
  <head>
   <script>
     document.write("Hello There!");
     document.write("&nbsp;&nbsp;&nbsp;&nbsp;");
     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!&nbsp;&nbsp;&nbsp;&nbsp;");
document.write("Hello There!");

如果这只是一个有趣的练习,那很好,但是通常情况下,您不想使用空格进行样式设置。您应该将文本包装在p或其他html元素中,并使用CSS。

答案 4 :(得分:0)

您只需要在要添加空间的位置添加&nbsp;

<script>
      document.write(“Hello There! &nbsp;&nbsp;&nbsp;&nbsp; I am boy”);
</script>