回答編集履歴
1
タイプミスなど細かい部分の修正
answer
CHANGED
@@ -20,14 +20,14 @@
|
|
20
20
|
</label>
|
21
21
|
</form>
|
22
22
|
|
23
|
-
<a target="
|
23
|
+
<a target="child_window" onClick="open_window()" style="color: deepskyblue">
|
24
24
|
子ウィンドウを開く
|
25
25
|
</a>
|
26
26
|
|
27
27
|
<script type="text/javascript" src="jquery.js"></script>
|
28
28
|
<script type="text/javascript">
|
29
|
-
function
|
29
|
+
function open_window(url) {
|
30
|
-
window.open("children.html", "
|
30
|
+
window.open("children.html", "child_window", "width=400, height=300, menubar=no, toolbar=no, scrollbars=yes");
|
31
31
|
}
|
32
32
|
</script>
|
33
33
|
</body>
|