js中write和writeln的区别

个人理解

1.这个是write呈现出来的结果

  document.write("12")
    document.write("12")
    document.write("12")
    document.write("12")
    document.write("12")

 2.这个是writeln呈现出来的结果

  document.writeln("12")
    document.writeln("12")
    document.writeln("12")
    document.writeln("12")
    document.writeln("12")

 两个图可以看出,writeln中间会有间隙,而write并没有

猜你喜欢

转载自blog.csdn.net/tjq11111/article/details/121716198