ランダムジャンプ 〜複数のリンク先にランダムに飛ばす~

プログラミング
ランダムジャンプ

概要

クリックすると指定された複数のリンクにランダムに飛ばすURLを作ります。

以下のリンクをクリックすると4つのurlにランダムに飛びます。

ランダムに移動します

ソースコード

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta http-equiv="Content-Script-Type" content="text/javascript">
    <title>ランダムジャンプ</title>
    <script type="text/javascript">
    <!--
      var mylink = new Array(
        "https://tomomon.jp/programming/ksnctf5/",
        "https://www.youtube.com/watch?v=vLV0UZ308bQ&t=155s",
        "https://tomomon.jp/travel/my_secret_place/",
        "https://tomomon.jp/travel/travel_ranking/"
      );
      function random_jump() {
        var i = Math.floor(Math.random() * mylink.length);
        location.href = mylink[i];
      }
    // -->
    </script>
  </head>
  <body>
    <h1>概要</h1>
    <p>クリックすると指定されたリンクにランダムに飛ばすURLを作ります。</p>
    <a href="javascript:random_jump();">ランダムに移動します</a>
    <h2>ソースコード</h2>
  </body>
</html>

コメント

タイトルとURLをコピーしました