前提・実現したいこと
JavaScriptを使って
「親ウインドウ→子ウインドウ→親ウインドウ」という流れで値を渡す処理を行いたいのですがうまくいきません。
親ウインドウで入力した値を子ウインドウで表示させ、その値を親ウインドウに再度渡すという処理です。
最終的に親ウインドウで値を表示させることはできるのですが、
その値が子ウインドウで表示されません。
発生している問題・エラーメッセージ
該当ソースコードの部分で以下のエラーが出ています。
JavaScript
1//エラー箇所 2var obj_window = window.open("Test2.html", "テスト2","width=200,height=300");
//エラー内容 Unable to set property 'value' of undefined or null reference
該当のソースコード
HTML
1<!--Test1.html--> 2<!DOCTYPE HTML> 3<html> 4<head> 5<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 6<title>Test1</title> 7<script type="text/javascript" src="Test01.js"></script> 8</head> 9<body> 10 <input type="text" id="i1"/> 11 <button id="btn" onclick='func()'>子ウインドウに渡す</button><p id="s"></p> 12</body> 13</html>
HTML
1<!--Test2.html--> 2<!DOCTYPE HTML> 3<html> 4<head> 5<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 6<title>Test2</title> 7<script type="text/javascript" src="Test02.js"></script> 8</head> 9<body> 10 <div> 11 <input type="text" id="i2" /> 12 <button id="btn2" onclick="func2();">親ウインドウに戻す</button> 13 </div> 14</body> 15</html> 16
JavaScript
1//Test01.js 2function func() { 3 var obj_window = window.open("Test2.html", "Test2","width=300,height=200"); 4 sub.document.getElementById("i2").value = document.getElementById("i1").value; 5}
JavaScript
1//Test02.js 2function func2() { 3 //子ウインドウの初期値の設定 4 document.getElementById("i2").value = window.opener.document.getElementById("i1").value; 5 //親ウインドウに値を渡す 6 window.opener.document.getElementById("s").innerHTML = document.getElementById("i2").value; 7 window.close(); 8}
補足情報(FW/ツールのバージョンなど)
動作確認はMicrosoft Edgeを使っています。
Test01.jsのコードに問題があり提示されたエラーが発生しません。正しく問題が発生するコードに書き換えてください。
回答2件
あなたの回答
tips
プレビュー