问答详情
源自:1-5 JavaScript-认识语句和符号

为什么helloworld显示在同一行,并且没有间隙?

document.write("Hello");

document.write("World");


提问者:qq_请叫我静静_03821823 2016-08-12 20:46

个回答

  • 爱吃葫芦娃
    2016-08-13 11:02:47
    已采纳

    他们都是文本节点,默认的属性display是inline,所以会紧挨着显示

  • Omooo
    2016-09-17 10:35:13

    厉害了

  • Blizzard_lihe
    2016-09-02 09:40:21

    http://img.mukewang.com/57c8d8720001229305850180.jpg

    这样的

  • qq_赵成冬_0
    2016-08-22 16:32:18

    我试了一下换行,见如下代码:

    <!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>


  • mmhs
    2016-08-12 21:17:13

    document.write("Hello"+<br/>);换行

    document.write("Hello"+"&nbsp");空格

  • last_for_ever
    2016-08-12 21:07:44

    这个记住就可以了,就是这样的 本来就没有间隙!切记!