【JavaScript】Write和Writeln的區別

Write和Writeln的區別

Write不能夠換行,Writeln能夠換行。html

 

如何查看Writeln的換行效果

在網頁中是看不到writeln的換行效果的,它是被瀏覽器表現爲一個空格顯示出來了。chrome

 

 

在HTML文件和JSP的源文件中都看不到效果,讀者能夠在標籤中加入預格式標籤查看效果,瀏覽器

    <script>
      document.write("<pre>write");
      document.writeln("writln");
      document.write("write</pre>");
    </script>

除了上面這種讀者也能夠用open方法從新打開一個窗口來查看測試

複製代碼
<script> 
with(window.open()){ 
document.write("write") 
document.writeln("writeln") 
document.writeln("write") 
}
</script>
複製代碼

而後在彈出的窗口中查看網頁源文件,就可看到效果。筆者通過測試,在chrome 56.0.2924.3中的彈出窗口中沒有查看源文件這一欄,這時候能夠「檢查」而後在Element一欄可看到效果,IE11和Firefox50.0中都有查看源文件一欄。spa

 

注意:.net

Note:  document.writeln (like  document.write) does not work in XHTML documents

write和writeln在XHTML文件不起做用,HTML就是語法相對寬鬆的XHTML,這也就解釋爲何在html沒有出現換行。點我查看code

查考文章

Html和XHTML已經XML的區別htm

http://www.jb51.net/article/25089.htmblog

https://developer.mozilla.org/en-US/docs/Web/API/Document/writelnip

 

 此文轉載自:http://www.cnblogs.com/HDK2016/p/6135203.html

相關文章
相關標籤/搜索