1
親ウィンドウに子ウィンドウを開くボタンがあるようにします。子ウィンドウには、入力テキストボックスとボタン(名前付きコピー)が必要です。子ウィンドウのテキストボックスにテキストを入力して[コピー]ボタンをクリックすると、子ウィンドウは閉じられ、入力された名前は親ウィンドウに表示されます。
私は以下のアプローチを試していますが、親の入力値を取り出す方法を理解できません。sessionStorageを使用せずにjavascriptを使用して子ウィンドウから親ウィンドウにデータを返す方法
p>Click the button to create a window and then display the entered name on parent window.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var myWindow = window.open("", "MsgWindow", "width=200,height=200");
myWindow.document.write("<p>This window's name is: " + myWindow.name + "</p>");
myWindow.document.write("<br/>");
myWindow.document.write("<input type='text' id='txtId' />");
myWindow.document.write("<input type='button' value='Copy'/>");
var x = localStorage.getItem(Name);
}
myWindow.opener.document.write("Landed to prent");
}
わからないが、あなたは、 'window.parent'を試すか、[タブやウィンドウ間の通信](HTTPの – Rajesh
可能な複製をwindow.topことができます。 //stackoverflow.com/questions/28230845/communication-between-tabs-or-windows) –
構文がわかりません。追加の詳細をお知らせください。 – inaya