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

hello<br>world! 不要换行

我想要显示成 hello<br>world! 不要换行,怎么弄? document.write("hello<br>"); document.write("world!"); 这样他老是自动换行

提问者:不理不气 2017-04-07 09:22

个回答

  • flqbestboy
    2017-04-07 19:37:11

    你的意思是直接在页面上显示:hello<br>world!    

    可以使用<xmp></xmp>标签将这句话包起来,如:document.write('<xmp>hello<br>world! </xmp>');


  • M先森i
    2017-04-07 09:41:33

    刚才我看错了问题,这样写:

         document.write("Hello")
         document.write("< br > ")
         document.write("world")

    你试试看

  • M先森i
    2017-04-07 09:31:10

    你直接写成

    document.write("Hello world");

    这样不行吗?非得写俩?