回答編集履歴

1

タイプミスなど細かい部分の修正

2016/11/20 15:15

投稿

退会済みユーザー
test CHANGED
@@ -42,7 +42,7 @@
42
42
 
43
43
 
44
44
 
45
- <a target="ChildWindow" onClick="disp()" style="color: deepskyblue">
45
+ <a target="child_window" onClick="open_window()" style="color: deepskyblue">
46
46
 
47
47
  子ウィンドウを開く
48
48
 
@@ -54,9 +54,9 @@
54
54
 
55
55
  <script type="text/javascript">
56
56
 
57
- function disp(url) {
57
+ function open_window(url) {
58
58
 
59
- window.open("children.html", "ChildWindow", "width=400, height=300, menubar=no, toolbar=no, scrollbars=yes");
59
+ window.open("children.html", "child_window", "width=400, height=300, menubar=no, toolbar=no, scrollbars=yes");
60
60
 
61
61
  }
62
62