當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM writeln()用法及代碼示例


writeln()方法用於在每個語句之後編寫帶有換行符的附加屬性的文檔。此方法類似於document.write()方法。

用法:

document.writeln( exp1, exp2, exp3, ... )

參數:此方法包含許多可選參數。可以列出所有表達式參數(exp1,exp2,…),並按出現的順序顯示。


Example:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM writeln() Method</title> 
        <style> 
            h1 { 
                color:green; 
            } 
            body { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>DOM writeln() Method</h2> 
        <pre> 
        <script> 
            document.write("Hello World!"); 
            document.write("Have a nice day!"); 
        </script> 
        </pre> 
        <pre> 
        <script> 
            document.writeln("Hello World!"); 
            document.writeln("Have a nice day!"); 
        </script> 
        </pre> 
    </body> 
</html>

輸出:

支持的瀏覽器:下麵列出了writeln()方法支持的瀏覽器:

  • chrome
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 HTML | DOM writeln() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。