アラートに改行されたメッセージを表示

  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>アラートに改行されたメッセージを表示</title>
  6. <script type="text/javascript">
  7.   function conf()
  8.   {
  9.     alert("やあ、元気かい?\n私は元気だよ。");
  10.   }
  11. </script>
  12. </head>
  13. <body>
  14. <h1>アラートに改行されたメッセージを表示</h1>
  15. <form>
  16.   <input type="submit" onClick="conf()">
  17. </form>
  18. <div style="font-size:10pt;text-align:right;margin-top:0.5em;">
  19. <a href="//tips.recatnap.info/" target="_top">PCスキルの小技・忘却防止メモ</a> -
  20. <a href="//tips.recatnap.info/wiki/" target="_top">PCスキルの小技・忘却防止メモのまとめ(wiki)</a>
  21. </div>
  22. <div style="font-size:10pt;text-align:center;margin-top:0.5em;padding:0.5em;border-top:1px solid #ccc;">
  23. Copyright &copy; 2009 by PCスキルの小技・忘却防止メモ. All rights reserved.
  24. </div>
  25. </body>
  26. </html>