iframe两个子页面间的跳转
iframe两个子页面间的跳转我在主页面里面有两个iframe,src的分别是top.html,left.html,我想通过操作top中的li或者a表签改变left.ht...
iframe两个子页面间的跳转我在主页面里面有两个iframe,src的分别是
top.html,left.html,我想通过操作top中的li或
者a表签改变left.html为right.html
求帮忙 展开
top.html,left.html,我想通过操作top中的li或
者a表签改变left.html为right.html
求帮忙 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
1个回答
2017-08-02 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
页面跳转的方法:
假如有A,B,C三个页面,C是B的iframe, B是A的iframe
第一种:本页面的跳转
location = window.location =location.href = window.location.href =self.location.href = "url地址";
window.open("url地址","_self");1212
第二种:父页面的跳转
parent.location.href=window.parent.location.href=window.parent.window.location"url地址";
window.open("url地址","_parent");1212
第三种:祖父页面的跳转
parent.parent.location=top.location.href=window.top.location.href"url地址";
window.open("url地址","_top")==parent.open("url地址","_parent")=parent.parent.open("url地址","_self");1212
第四种:子页面的跳转
将iframe的src修改即可,如:<iframe src="D.html" name="sonIframe">;
window.sonIframe.location="D.html";1212
第五种:孙子页面的跳转
window.sonIframe.grandsonIframe.location="D.html";
window.sonIframe.document.getElementById('grandsonIframeId').src="D.html";1212
第六种:超链接<a>的跳转
<a href="D.html" target="_self">跳转到D.html页面</a> /*默认_self是在本窗口跳转*/
window.open("url地址","_blank");//默认_blank是在新窗口跳转1212
注意:可以通过设置target属性,实现不同方式的跳转页面。
多个嵌套iframe之间的相互访问全局变量和全局函数
第一种:子iframe的访问
调用方法:window.sonIframe.ff();
调用变量:window.sonIframe.vv;1212
第二种:父iframe的访问
调用方法:window.parent.ff();
调用变量:window.parent.vv;1212
第三种:最外层iframe的访问
调用方法:window.parent.parent.ff();
调用变量:window.top.vv;1212
第四种:平级iframe的访问
top.frames["sonIframeone"].sonIframeone("调用平级的另一个iframe的方法");
假如有A,B,C三个页面,C是B的iframe, B是A的iframe
第一种:本页面的跳转
location = window.location =location.href = window.location.href =self.location.href = "url地址";
window.open("url地址","_self");1212
第二种:父页面的跳转
parent.location.href=window.parent.location.href=window.parent.window.location"url地址";
window.open("url地址","_parent");1212
第三种:祖父页面的跳转
parent.parent.location=top.location.href=window.top.location.href"url地址";
window.open("url地址","_top")==parent.open("url地址","_parent")=parent.parent.open("url地址","_self");1212
第四种:子页面的跳转
将iframe的src修改即可,如:<iframe src="D.html" name="sonIframe">;
window.sonIframe.location="D.html";1212
第五种:孙子页面的跳转
window.sonIframe.grandsonIframe.location="D.html";
window.sonIframe.document.getElementById('grandsonIframeId').src="D.html";1212
第六种:超链接<a>的跳转
<a href="D.html" target="_self">跳转到D.html页面</a> /*默认_self是在本窗口跳转*/
window.open("url地址","_blank");//默认_blank是在新窗口跳转1212
注意:可以通过设置target属性,实现不同方式的跳转页面。
多个嵌套iframe之间的相互访问全局变量和全局函数
第一种:子iframe的访问
调用方法:window.sonIframe.ff();
调用变量:window.sonIframe.vv;1212
第二种:父iframe的访问
调用方法:window.parent.ff();
调用变量:window.parent.vv;1212
第三种:最外层iframe的访问
调用方法:window.parent.parent.ff();
调用变量:window.top.vv;1212
第四种:平级iframe的访问
top.frames["sonIframeone"].sonIframeone("调用平级的另一个iframe的方法");
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询