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


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


HTML中的write()方法用於在文檔中編寫一些內容或JavaScript代碼。此方法主要用於測試目的。它用於刪除HTML文檔中的所有內容並插入新內容。它還用於將其他文本提供給由document.open()方法打開的輸出。此方法與writeln()方法非常相似。

用法:

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

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


範例1:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM write() Method</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>DOM write() Method</h2> 
        <script> 
            document.write("GeeksforGeeks! "); 
            document.write 
                ("A computer science portal for geeks") 
        </script> 
    </body> 
</html>                    

輸出:

範例2:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM write() Method</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>DOM write() Method</h2> 
        <button type="button" onclick="Geeks()"> 
            Submit 
        </button> 
        <script> 
        function Geeks() { 
            document.write 
                ('<center>computer science portal</center>'); 
        } 
        </script> 
    </body> 
</html>                            

輸出:

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

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


相關用法


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