2

私は JavaScript の初心者で、このWorkshop: Displaying a Scrolling Messageに従って簡単なコア サンプルを作成しようとしています。

しかし、この変種のスクロール メッセージは機能しません。そして、なぜこれが起こるのか理解できません。私のウェブブラウザGoogle Chrome、エンコーディングANSI

コード:

<html>
    <head><title>Scrolling Message Example</title>
        <script>
            msg = "This is an example of a scrolling message. Isn't it exciting?";
            msg = "...          ..." + msg;
            pos = 0;

            function ScrollMessage() {
               window.status = msg.substring(pos, msg.length) + msg.substring(0, pos);
               pos++;
               if (pos > msg.length) pos = 0;
               window.setTimeout("ScrollMessage()", 200);
            }

            ScrollMessage();
    </script>
        </head>
        <body>
            <h1>Scrolling Message Example</h1>
            Look at the status line at the bottom of this page. (Don't
            watch it too long, as it may be hypnotic.)
        </body>
</html>

質問:

  • この悩みをどう解決する?
  • この目的のために使用するのに適した他のバリアントはどれですか?
4

3 に答える 3