回答編集履歴
1
ホスト部のハードコードを除去
test
CHANGED
@@ -7,3 +7,29 @@
|
|
7
7
|
```
|
8
8
|
|
9
9
|
ではダメでしょうか
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
追記 Oct 9, 2019 9:30pm
|
14
|
+
|
15
|
+
ホストは変わらないのですね。
|
16
|
+
|
17
|
+
```js
|
18
|
+
|
19
|
+
window.location.href = `${window.location.origin}/${Math.random() < 0.5? 'B' : 'C'}${window.location.search}`;
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
// 上のだと1行が長くなって見づらいので、分割して書くならこれでもいいかと
|
24
|
+
|
25
|
+
window.location.href = [
|
26
|
+
|
27
|
+
window.location.origin,
|
28
|
+
|
29
|
+
Math.random() < 0.5? '/B' : '/C',
|
30
|
+
|
31
|
+
window.location.search
|
32
|
+
|
33
|
+
].join('');
|
34
|
+
|
35
|
+
```
|