JavaScript Reference/Javascript Methods/createComment — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:22, 26 мая 2010

"createComment()" Example

    
<html>
<body>
Body content.
<script language="JavaScript">
    document.createComment("This is the comment text");
</script>
</body>
</html>



"createComment()" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |document                                                      |
+----------------+--------------------------------------------------------------+



"createComment()" Syntax, Parameters and Note

Note:
This method creates a <comment> element.
    
Syntax:
    
document.createComment(param1)

Parameters:
    param1   Required; the text of the comment.