[新着] Webテンプレートを仮オープンしました
<html lang="ja">
<body>
<iframe id="koframe" src="koflame.html"></iframe>
<button onClick="alert(document.getElementById('koframe').contentWindow.document.all('kotxt').innerText);">push</button>
</body>
</html><html lang="ja"> <body> <form action="koflame2.html"> <textarea id="kotxt"></textarea> <input type="submit"> </form> </body> </html>
<html lang="ja"> <body> <form action="koflame.html"> <textarea id="kotxt"></textarea> <input type="submit"> </form> </body> </html>
// 現時点で標準的な方法
document.getElementById ('koframe').contentDocument.getElementById ('kotxt').value
// 最も互換性が高いと思われる方法
window.frames['koframe'].document.getElementById ('kotxt').value