gecko-dev/dom/tests/js/write.html

12 строки
410 B
HTML
Исходник Обычный вид История

1998-07-24 02:47:32 +04:00
<HTML>
<BODY>
<P>This is text in the document.</P>
<SCRIPT>
document.writeln("<P>This is text generated by a document.write.");
1998-07-25 05:13:23 +04:00
document.writeln("And this is an image: <IMG SRC='http://zabadubop/layers/tests/mzcolor.gif'></P>");
1998-07-24 02:47:32 +04:00
</SCRIPT>
And now some more text in the document.
1998-07-25 05:13:23 +04:00
<SCRIPT>
1999-02-03 22:39:53 +03:00
document.writeln("<SCRIPT>document.writeln('<P>Text from a recursive document.write.</P>');<\/SCRIPT>");
1998-07-25 05:13:23 +04:00
</SCRIPT>
1998-07-24 02:47:32 +04:00
</BODY>