質問編集履歴
1
ソースの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
$("[id^=id1]").click(function () {
|
18
18
|
|
19
|
-
subWindow = window.open(test2.html", "test2");//子画面を開く
|
19
|
+
subWindow = window.open("test2.html", "test2");//子画面を開く
|
20
20
|
|
21
21
|
subWindow.focus();
|
22
22
|
|
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
$("[id^=id2]").click(function () {
|
46
46
|
|
47
|
-
subWindow2 = window.open(test3.html", "test3");//孫画面を開く
|
47
|
+
subWindow2 = window.open("test3.html", "test3");//孫画面を開く
|
48
48
|
|
49
49
|
subWindow2.focus();
|
50
50
|
|