0

画面にランダムな数字や文字ではなく、作成した単語だけのランダムな文字列を出力するJavaScriptコードがあります。だから私はそれが必要なので、特定の文字列をランダムに選択すると、別のページにリダイレクトされます。

4

2 に答える 2

5
if (randomString == 'patternString') {
   window.location.href = 'http://google.com';
}
于 2013-01-21T22:27:15.363 に答える
0
window.location.href = 'https://www.google.com/search?q=' + encodeURIComponent(randomString);
于 2013-01-21T22:37:16.247 に答える