Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
画面にランダムな数字や文字ではなく、作成した単語だけのランダムな文字列を出力するJavaScriptコードがあります。だから私はそれが必要なので、特定の文字列をランダムに選択すると、別のページにリダイレクトされます。
if (randomString == 'patternString') { window.location.href = 'http://google.com'; }
window.location.href = 'https://www.google.com/search?q=' + encodeURIComponent(randomString);