子ウィンドウの情報取得
JavaScriptで子ウィンドウの情報を取得できるかのテストです。
子ウィンドウの情報
<script language="javascript">
function open_win() {
nWin = window.open("win_new.html","new_win");
}
function open_win2() {
nWin = window.open("http://guardian.ne.jp/history_Internet.html","new_win");
}
function get_info() {
var doc = nWin.document;
document.form1.win_title.value = doc.title;
document.form1.win_url.value = doc.location.href;
}
</script>
iframeタグ
iframeに指定のURLを表示 |
<iframe src="index.html"> |
|
|
JavaScriptで情報取得 |
get_iframe() |
初期srcのみ取得 |
|
|
|
iframeの情報
function get_iframe() {
var doc = document.getElementById("frame");
document.form2.win_title.value = doc.title;
document.form2.win_url.value = doc.location.href;
}
戻る