前些日子,一直奔波于這三種操作,想想以後會常用,幹脆整理下來,供自己以後檢視。也給大家分享一下!
以下面寫出自己認為有用的操作和代碼。
第一次在園裡面寫,肯定有很多不足夠之處,希望大家多多指點。
一、Iframe 篇
//&&&&&&&&&&&&&&&&&&&&公共方法開始&&&&&&&&&&&&&&&
//父對象得到子視窗的值
//ObjectID是視窗辨別,ContentID是元素ID
function GetValue(ObjectID,ContentID)
{
var IsIE = (navigator.appName == 'Microsoft Internet Explorer')
if(IsIE)
{//如果是IE
alert(document.frames(ObjectID).document.getElementById(ContentID).innerHTML);
}
else
{//如果是FF
alert(document.getElementById(ObjectID).contentDocument.getElementById(ContentID).innerHTML);
//FF下不支援innerText; 下面是解決方法
//if(document.all){
// alert(document.getElementById('div1').innerText);
//} else{
// alert(document.getElementById('div1').textContent);
//}
}
}
//父對象向子視窗指派
function SetValue(ObjectID,ContentID)
var IsIE = (navigator.appName == 'Microsoft Internet Explorer')
if(IsIE)
{//如果是IE
document.frames(ObjectID).document.getElementById(ContentID).innerHTML="我是IE下通過父視窗指派過來的";
}
else
{//如果是FF
document.getElementById(ObjectID).contentDocument.getElementById(ContentID).innerHTML="我是FF下通過父視窗指派過來的";
}
//&&&&&&&&&&&&&&&&&&&&公共方法結束&&&&&&&&&&&&&&&
1.父視窗對子視窗操作
重新整理:
document.getElementById("IframeID").src=document.getElementById("IframeID").src+"?_="+Math.random();
上面這種方法有時需要對“src”屬性處理一下。
取值:
//父視窗取子視窗的值
GetValue("Iframe1","IframeDiv");
指派:
//父視窗設定視窗元素的值;
SetValue("Iframe1","IframeDiv");
2.子視窗操作父視窗
重新整理:
(1)、window.parent.location.href=window.parent.location.href;
(2)、window.parent.location.reload();
(3)、大家可以補充
取值:
alert(window.parent.document.getElementById("IframeDiv").innerHTML);
window.parent.document.getElementById("IframeDiv").innerHTML="我是從子視窗IFRAME傳過來的值";
關閉:
window.parent.opener=null;//如果不加這句,會提示關閉詢問視窗;
window.parent.close();
二、window.open 篇
1.父視窗對子視窗操作
打開:
var win=null;
win=window.open("Open.html","win","width=200,height=200");
最大化:
//視窗最大化
function SonMaximize()
if(win&&win.open&&!win.closed)
{
win.moveTo(-4,-4);
win.resizeTo(screen.availWidth+8,screen.availHeight+8);
}else{
alert('還沒有打開視窗或已經關閉');
}
最小化:
//視窗最小化
function SonMinimize()
win.resizeTo(0,0);
win.moveTo(0,window.screen.width);
alert('還沒有打開視窗或已經關閉');
}
//關閉視窗
function CloseSon()
win.opener=null;
win.close()
alert('還沒有打開視窗或已關閉') ;
//重新整理
function RefreshSon()
win.location.reload();
win.focus();
alert('視窗還沒有打開或已關閉');
檢視視窗大小:
function ViewSonSize()
alert(win.document.body.clientWidth+'*'+win.document.body.clientHeight);
}else
alert(' 還沒有打開視窗或者已關閉');
alert(window.document.getElementById("OpenDiv").innerHTML);
win.document.getElementById("OpenDiv").innerHTML="我是從父視窗中傳過來的值";
2.子視窗操作視窗
window.opener.location.reload();
//下面這種方法也可以
//window.parent.location.href=window.parent.location.href;
關閉本視窗:
//關閉本視窗
function CloseWindow()
{ //window.opener.opener=null;
window.close();
關閉父視窗:
//關閉父視窗
function CloseParent()
{ //火狐下不起作用,如果要想起作用。用下面的方法
//開firefox,在位址欄輸入about:config
//找到dom.allow_scripts_to_close_windows這項并改為true
var IsIE = (navigator.appName == 'Microsoft Internet Explorer')
if(IsIE){//如果是IE
window.opener.opener=null;
window.opener.close();
window.close();
}else{
alert("火狐不能直接關閉;需要以下設定1.開firefox,在位址欄輸入about:config;2.找到dom.allow_scripts_to_close_windows這項并改為true");
alert(window.opener.document.getElementById("OpenDiv").innerHTML);
window.opener.document.getElementById("OpenDiv").innerHTML="我是從子視窗Open傳過來的值";
三、模态視窗篇
1.父視窗操作子視窗
父視窗JS代碼:
var parValue="現在顯示了父視窗中的變量值";
var hao="郝建衛";
function ShowDailog(PageHref,Title,Height,Width)
//--------------left位置
//screen.availHeight聲明了顯示浏覽器的螢幕的可用寬度
var dleft =(screen.availHeight-Height)/2;
//--------------top位置
var dtop =(screen.availWidth-Width)/2;
//---------------
Var sRet = window.showModalDialog(PageHref,window,Title,"scrollbars=yes;resizable=no;help=no;status=no;center=yes;dialogTop=25;dialogLeft="+ dleft +";dialogTop="+ dtop +";dialogHeight="+Height+"px;dialogWidth="+Width+"px;");
//--------return
if (sRet =="refresh")//這種是利用傳回值來重新整理父頁面
window.Test="true";
window.location.reload();
alert(window.Test);
function test()
alert("模态視窗成功調用父視窗的方法");
2.模态視窗操作父視窗
var parentWin=window.dialogArguments;
parentWin.location.reload();
alert(parentWin.document.getElementById("ShowModalDialogDiv").innerHTML) //擷取父視窗中的對象
alert("我是從父視窗中得到的變量>>>"+parentWin.parValue); //擷取父視窗中的變量
調用父視窗JS方法:
parentWin.test(); //調用父視窗中的方法
parentWin.document.getElementById("ShowModalDialogDiv").innerHTML="我是從子視窗ShowModalDialog傳過來的值";
window.parent.close();
關閉父視窗:
function CloseModal()
{
window.parent.parent.close();
//parentWin.opener=null;如果把上面的換成這行,不能關閉父視窗,
parentWin.close();
//window.parent.parent.parent.parent.close();這個隻能關閉模态視窗本身目前隻在IE6下測試
<a href="http://files.cnblogs.com/haojianwei/JavaScript%E7%88%B6%E7%AA%97%E5%8F%A3%E4%B8%8E%E5%AD%90%E7%AA%97%E5%8F%A3%E7%9B%B8%E4%BA%92%E6%93%8D%E4%BD%9C.rar" target="_blank">JavaScript父視窗與子視窗互相操作.rar</a>
本文轉自左正部落格園部落格,原文連結:http://www.cnblogs.com/soundcode/archive/2013/03/14/2958900.html,如需轉載請自行聯系原作者