|
復(fù)制代碼 代碼如下:
onload=function()
{
try
{
parent.Link.location.reload();
}
catch(e)
{
}
}
2,獲取URL并字符處理
復(fù)制代碼 代碼如下:
var url=parent.frames["right"].location.href;
//document.write('<Font size="2" color="red">'+url+"</Font>");
url=url.substring(url.indexOf("TBSW")+21,url.length);
3,設(shè)置Title
top.frames.left.document.title=url;
3,關(guān)閉頂則
復(fù)制代碼 代碼如下:
<script type="text/Javascript">
<!--
function ctrl()
{
var img=document.getElementById("imgctop");
var mainfrm=top.parent.window.frames["Frame"];
//alert (mainfrm);
if(mainfrm.rows == "55,*")
{
mainfrm.rows = "0,*";
img.src="Images/topopen.jpg";
img.alt="展開(kāi)頂則";
}
else
{
mainfrm.rows = "55,*";
img.src="Images/topclose.jpg";
img.alt="關(guān)閉頂則";
}
}
//-->
</script>
4,左右則
復(fù)制代碼 代碼如下:
<script type="text/Javascript">
<!--
function ctrl()
{
var img=document.getElementById("imgctrl");
if(parent.document.all.bottom.cols == "170,7,*")
{
parent.document.all.bottom.cols = "0,7,*";
img.src="Images/open.jpg";
img.alt="展開(kāi)左則";
}
else
{
parent.document.all.bottom.cols = "170,7,*";
img.src="Images/close.jpg";
img.alt="關(guān)閉左則";
}
}
//-->
</script>
JavaScript技術(shù):JS與框架頁(yè)的操作代碼,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。