我想要显示成 hello<br>world! 不要换行,怎么弄? document.write("hello<br>"); document.write("world!"); 这样他老是自动换行
你的意思是直接在页面上显示:hello<br>world!
可以使用<xmp></xmp>标签将这句话包起来,如:document.write('<xmp>hello<br>world! </xmp>');
刚才我看错了问题,这样写:
document.write("Hello") document.write("< br > ") document.write("world")
你试试看
你直接写成
document.write("Hello world");
这样不行吗?非得写俩?