// JavaScript Document $(function() { //--------------------------------------------- // ランダムリンク //--------------------------------------------- var randomLinks = [ 'https://www.youtube.com/embed/vczUoOue4xM?rel=0', 'https://www.youtube.com/embed/UdiyTXVvY3s?rel=0', 'https://www.youtube.com/embed/bU4Fi5RoG2c?rel=0', 'https://www.youtube.com/embed/I3Qua6S2JGQ?rel=0', 'https://www.youtube.com/embed/FkMu9XOktK0?rel=0', 'https://www.youtube.com/embed/DSO_dDvOouU?rel=0', 'https://www.youtube.com/embed/r8XaxPhkXQE?rel=0', 'https://www.youtube.com/embed/053G0wBMm8k?rel=0', 'https://www.youtube.com/embed/MmN9aBjGNac?rel=0', 'https://www.youtube.com/embed/qzH6Li5xIPY?rel=0', 'https://www.youtube.com/embed/u1FeVmNjnCY?rel=0', 'https://www.youtube.com/embed/aiKxcVDeMz8?rel=0', 'https://www.youtube.com/embed/5ixDRYmBSkM?rel=0', 'https://www.youtube.com/embed/T3sjC3MaJV4?rel=0', 'https://www.youtube.com/embed/aCEq-S7y8KA?rel=0', 'https://www.youtube.com/embed/_8h4sZd6Kkc?rel=0', 'https://www.youtube.com/embed/d6PLjO1KKSQ?rel=0', 'https://www.youtube.com/embed/qi47UJWULrw?rel=0', 'https://www.youtube.com/embed/bTcejOdPSOs?rel=0', 'https://www.youtube.com/embed/xpe16FZ6XjA?rel=0', 'https://www.youtube.com/embed/INTaUsrscR0?rel=0', 'https://www.youtube.com/embed/Xv0K1gdZIIg?rel=0', 'https://www.youtube.com/embed/2BVCfDxa2qw?rel=0', 'https://www.youtube.com/embed/O4tBmS8By98?rel=0', 'https://www.youtube.com/embed/ETYCXi7zunw?rel=0', 'https://www.youtube.com/embed/wbq4NuYB07Q?rel=0', 'https://www.youtube.com/embed/Z2WKl8Nl-YI?rel=0', 'https://www.youtube.com/embed/3T3od4135Ho?rel=0', 'https://www.youtube.com/embed/h9KBCTIgH4c?rel=0', 'https://www.youtube.com/embed/6BqAy0TqWyk?rel=0', 'https://www.youtube.com/embed/qG-KwsFy-NE?rel=0', 'https://www.youtube.com/embed/f1bgJEW6Vt?rel=0', 'https://www.youtube.com/embed/aviS5LCP3Jw?rel=0']; // クリックイベントを設定 $('#Randam a').click(function(e) { e.preventDefault(); // デフォルトのリンク先への遷移をキャンセル // ランダムなインデックスを生成 var randomIndex = Math.floor(Math.random() * randomLinks.length); // ランダムなリンクを取得して設定 var randomLink = randomLinks[randomIndex]; $(this).attr('href', randomLink); }); });