要件
一方のインターフェースで別のインターフェースを開き、JS を介してもう一方のインターフェースでユーザーが入力した値を取得します。
例:
Index.html
関数 EntryPoint() {
var style = 'dialogHeight:600px;dialogWidth:800px;status:no;help:0;scroll:yes';
var a = window.showModalDialog('other.html', '', style);
if (a == 未定義) {
a = window.returnValue;
}
// デバッガ;
if (a != null && a.length > 0) {
document.getElementById("name").value = a[0];
document.getElementById("age").value = a[1];
}
}
<本体>