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


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


createComment()方法用於創建帶有某些指定文本的注釋節點。此屬性用於將文本值設置為字符串類型的參數。

用法:

document.createComment( text )

參數:該方法接受可選的單個參數文本。此參數用於保存注釋字符串。


Example:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM createComment() Method</title> 
        <style> 
            h1, h2 { 
                color:green; 
                font-weight:bold; 
            } 
            body { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksForGeeks</h1> 
        <h2>DOM createComment() Method</h2> 
        <button onclick="geeks()">Submit</button> 
        <p id="sudo"></p> 
        <script> 
            function geeks() { 
                var c = document.createComment("GFG comments"); 
                document.body.appendChild(c); 
                var x = document.getElementById("sudo"); 
                x.innerHTML = "Comments are Invisible!"; 
            } 
        </script> 
    </body> 
</html>                    

輸出:

支持的瀏覽器:下麵列出了DOM createComment() Method屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


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