JS与框架页的操作代码_javascript技巧
时间:2021-07-01 10:21:17
帮助过:6人阅读
1,刷新框架
代码如下:
onload=function()
{
try
{
parent.Link.location.reload();
}
catch(e)
{
}
}
2,获取URL并字符处理 代码如下:
var url=parent.frames["right"].location.href;
//document.write(''+url+"");
url=url.substring(url.indexOf("TBSW")+21,url.length);
3,设置Title top.frames.left.document.title=url;
3,关闭顶则
代码如下: