<script type="text/javascript">
document.write("hello");
document.write("world");
</script>
以上代码网页中显示结果是:helloworld 中间无空格,如果想让网页中的helloworld中间有空格,怎么编代码?
上面一堆废话,你直接在第一句结尾或第二句开头打上个空格就行了,比如hello五个字母敲完,再按一下空格
document.write("hello"+"<br>")
直接打空格,或者加 ,“hello空格” “hello ”
document.write('i love ')
docuemnt.write('hello ')第一个输出的hello后面加一个空格即可
document.write('i love')输入的时候加一个空格即可
最简单的加个 就行
document.write( )
你可以把helloworld放到一个document里,document里的文本是会完全保留显示出来的