document_write_in_onload.html 217 B

12345678910111213
  1. <html>
  2. <head>
  3. <title>Document Write In Onload</title>
  4. <script>
  5. function init() {
  6. document.writeln('goodbye, world!');
  7. }
  8. </script>
  9. </head>
  10. <body onload="init();">
  11. <p>hello world</p>
  12. </body>
  13. </html>