teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

ソースの修正

2020/10/01 07:58

投稿

kumakumatan
kumakumatan

スコア213

title CHANGED
File without changes
body CHANGED
@@ -7,7 +7,7 @@
7
7
  ```javascript
8
8
  var subWindow
9
9
  $("[id^=id1]").click(function () {
10
- subWindow = window.open(test2.html", "test2");//子画面を開く
10
+ subWindow = window.open("test2.html", "test2");//子画面を開く
11
11
  subWindow.focus();
12
12
  });
13
13
  // 親画面CLOSE処理
@@ -21,7 +21,7 @@
21
21
  ```javascript
22
22
  var subWindow2
23
23
  $("[id^=id2]").click(function () {
24
- subWindow2 = window.open(test3.html", "test3");//孫画面を開く
24
+ subWindow2 = window.open("test3.html", "test3");//孫画面を開く
25
25
  subWindow2.focus();
26
26
  });
27
27
  ```