質問編集履歴
6
内容変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -178,6 +178,6 @@
|
|
178
178
|
|
179
179
|
|
180
180
|
|
181
|
-
(エラーメッセージ)
|
181
|
+
(エラーメッセージ:async/awaitタイプで実行した場合)
|
182
182
|
|
183
183
|
![イメージ説明](c8f6ae5fc42af8773d36aca37c0104ee.png)
|
5
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -175,3 +175,9 @@
|
|
175
175
|
|
176
176
|
|
177
177
|
以上、よろしくお願いいたします。
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
(エラーメッセージ)
|
182
|
+
|
183
|
+
![イメージ説明](c8f6ae5fc42af8773d36aca37c0104ee.png)
|
4
内容変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -60,7 +60,7 @@
|
|
60
60
|
|
61
61
|
function openWaitWindow(){
|
62
62
|
|
63
|
-
WaitWindow = window.open('https://x
|
63
|
+
WaitWindow = window.open('https://example.com/example.html',
|
64
64
|
|
65
65
|
WaitWindow,
|
66
66
|
|
@@ -74,7 +74,7 @@
|
|
74
74
|
|
75
75
|
function closeWindow(){
|
76
76
|
|
77
|
-
WaitWindow.close('https://x
|
77
|
+
WaitWindow.close('https://example.com/example.html',
|
78
78
|
|
79
79
|
WaitWindow,
|
80
80
|
|
@@ -152,7 +152,7 @@
|
|
152
152
|
|
153
153
|
const openWindow = () => {
|
154
154
|
|
155
|
-
win = window.open("https://x
|
155
|
+
win = window.open("https://example.com/example.html")
|
156
156
|
|
157
157
|
}
|
158
158
|
|
@@ -168,9 +168,9 @@
|
|
168
168
|
|
169
169
|
### 補足情報(FW/ツールのバージョンなど)
|
170
170
|
|
171
|
-
サーバー上の
|
171
|
+
サーバー上のexample.htmlファイルは、下記URLを叩けば移ります。
|
172
172
|
|
173
|
-
https://x
|
173
|
+
https://example.com/example.html
|
174
174
|
|
175
175
|
|
176
176
|
|
3
内容変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -168,9 +168,9 @@
|
|
168
168
|
|
169
169
|
### 補足情報(FW/ツールのバージョンなど)
|
170
170
|
|
171
|
-
サーバー上の
|
171
|
+
サーバー上の○○○○○○.htmlファイルは、下記URLを叩けば移ります。
|
172
172
|
|
173
|
-
https://
|
173
|
+
https://xxxxxxx.com/○○○○○○.html
|
174
174
|
|
175
175
|
|
176
176
|
|
2
内容変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -152,7 +152,7 @@
|
|
152
152
|
|
153
153
|
const openWindow = () => {
|
154
154
|
|
155
|
-
win = window.open("https://
|
155
|
+
win = window.open("https://xxxxxxx.com/○○○○○○.html")
|
156
156
|
|
157
157
|
}
|
158
158
|
|
1
内容変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -60,7 +60,7 @@
|
|
60
60
|
|
61
61
|
function openWaitWindow(){
|
62
62
|
|
63
|
-
WaitWindow = window.open('https://
|
63
|
+
WaitWindow = window.open('https://xxxxxxx.com/○○○○○○.html',
|
64
64
|
|
65
65
|
WaitWindow,
|
66
66
|
|
@@ -74,7 +74,7 @@
|
|
74
74
|
|
75
75
|
function closeWindow(){
|
76
76
|
|
77
|
-
WaitWindow.close('https://
|
77
|
+
WaitWindow.close('https://xxxxxxx.com/○○○○○○.html',
|
78
78
|
|
79
79
|
WaitWindow,
|
80
80
|
|
@@ -102,9 +102,21 @@
|
|
102
102
|
|
103
103
|
$("#real_regist").click(function () {
|
104
104
|
|
105
|
+
|
106
|
+
|
107
|
+
//ファイルを開く
|
108
|
+
|
105
109
|
openWaitWindow();
|
106
110
|
|
111
|
+
|
112
|
+
|
113
|
+
//待機時間10秒
|
114
|
+
|
107
115
|
sleep(1000);
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
//ファイルを閉じる
|
108
120
|
|
109
121
|
closeWindow();
|
110
122
|
|
@@ -136,17 +148,19 @@
|
|
136
148
|
|
137
149
|
let win
|
138
150
|
|
151
|
+
//ファイルを開く
|
152
|
+
|
139
153
|
const openWindow = () => {
|
140
154
|
|
141
155
|
win = window.open("https://gay86.com/WaitWindow/WaitWindow.html")
|
142
156
|
|
143
157
|
}
|
144
158
|
|
145
|
-
|
159
|
+
//ファイルを閉じる
|
146
160
|
|
147
|
-
const closeWindow = () => {
|
161
|
+
const closeWindow = () => {
|
148
162
|
|
149
|
-
win.close()
|
163
|
+
win.close()
|
150
164
|
|
151
165
|
}
|
152
166
|
|