質問編集履歴
1
呼出元、呼び出し先の構文を追記致しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -15,3 +15,27 @@
|
|
15
15
|
|
16
16
|
|
17
17
|
returnValueに近い方法があればご教示お願い致します。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
追記
|
22
|
+
|
23
|
+
親ウインドウ
|
24
|
+
|
25
|
+
result = window.showModalDialog(url, "", "status:no;center:yes;dialogWidth:685px;dialogHeight:575px");
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
子ウインドウ
|
30
|
+
|
31
|
+
var ary = new Array(3);
|
32
|
+
|
33
|
+
ary[0] = document.getElementById("code" + selectIdx).value;
|
34
|
+
|
35
|
+
ary[1] = document.getElementById("NameA" + selectIdx).value;
|
36
|
+
|
37
|
+
ary[2] = document.getElementById("NameB" + selectIdx).value;
|
38
|
+
|
39
|
+
window.returnValue = customerArray;
|
40
|
+
|
41
|
+
window.close();
|