框架学习(二)子窗口访问父窗口中的变量和函数

1、

<html>
<head>
<title>The Unchanging frameset page</title>
<script Language="JavaScript" type="text/javascript">
var pagesVisited = new Array();
function returnPagesVisited()
{
var returnValue = "So far you have visited the following pages\n";
var pageVisitedIndex;
var numberOfPagesVisited = pagesVisited.length;
for (pageVisitedIndex = 0; pageVisitedIndex < numberOfPagesVisited;pageVisitedIndex++)
 {
        returnValue = returnValue + pagesVisited[pageVisitedIndex] + "\n";
 }
return returnValue;
}
function addPage(fileName)
{
var fileNameStart = fileName.lastIndexOf("/") + 1;
fileName = fileName.substr (fileNameStart);
pagesVisited[pagesVisited.length] = fileName;
return true;
}
</script>
</head>
<frameset cols="50%,*">
<frame name=fraLeft src="page_a.htm">
<frame name=fraRight src="page_b.htm">
</frameset>
</html>

2、四个

<html>
<head>
<script language="JavaScript" type="text/javascript">
function butShowVisited_onclick()
{
document.form1.txtaPagesVisited.value = window.parent.returnPagesVisited();
}
</script>
</head>
<body onload="window.parent.addPage(window.location.href);">
<center>
<font size=6 color=MidnightBlue face=verdana>
This is Page A
</font>
</center>
<p>
<A href="page_a.htm">Page A</A>
<A href="page_b.htm">Page B</A>
<A href="page_c.htm">Page C</A>
<A href="page_d.htm">Page D</A>
</p>
<form name=form1>
<textarea rows=10 cols=35 name=txtaPagesVisited wrap=hard>
</textarea>
<br>
<input type="button" value="List Pages Visited" name=butShowVisited
onclick="butShowVisited_onclick()">
</form>
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值