月曜日, 9月 14, 2009
[JavaScript]window.showModalDialog内のiframe
▼質問
window.showModalDialog内のiframeから親ウィンドウを操作したいんだ。
どうしたらできるか教えてくれ!!
▼回答
window.parentでアクセスできるから試してみてくれ!!
こんな感じで使えるよ!!
●親HTML
function 親の関数名()
{
var iframe = document.getElementById( "sample" );
if ( document.all ) {
iframedoc = iframe.contentWindow.document;
} else {
iframedoc = iframe.contentDocument;
}
// 親から子を操作するときのアクセス方法
alert( iframedoc.getElementById( "chkSample" ).checked );
}
●子HTML
function 子の関数名()
{
window.parent.親の関数名();
}
window.showModalDialog内のiframeから親ウィンドウを操作したいんだ。
どうしたらできるか教えてくれ!!
▼回答
window.parentでアクセスできるから試してみてくれ!!
こんな感じで使えるよ!!
●親HTML
function 親の関数名()
{
var iframe = document.getElementById( "sample" );
if ( document.all ) {
iframedoc = iframe.contentWindow.document;
} else {
iframedoc = iframe.contentDocument;
}
// 親から子を操作するときのアクセス方法
alert( iframedoc.getElementById( "chkSample" ).checked );
}
●子HTML
function 子の関数名()
{
window.parent.親の関数名();
}