JavaScript Reference/Javascript Methods/createComment — различия между версиями
Admin (обсуждение | вклад) м (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.