码迷,mamicode.com
首页 > 其他好文 > 详细

使用iframe框架后的页面跳转时目标页面变为iframe的子页面的问题

时间:2017-11-02 18:11:29      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:cin   set   tar   win   location   ros   跳转   子页面   ram   

<frameset rows="4,200,10,*,120" cols="*" framespacing="0" frameborder="no" border="1" >

 

    <frame src=""/>
    <frame src="<%=practiceInfoSrc %>" id="practiceInfo" name="practiceInfo"  noresize />
    <frame src="" scrolling="no"/>
    <frame src="<%=practiceSrc %>" id="prombleInfo" name="prombleInfo"  scrolling="yes" noresize />
    <frame src="<%=practiceAnswerSrc %>" id="answerInfo" name="answerInfo" noresize/> 
  </frameset>

 

总的来说,使用 iframe 时,在子页面中的跳转要十分细心,跳转的目标页面时作为子页面还是作为整个页面。从子页面使整个页面跳转的方法有两个:

(1)在标签中跳转,设置标签的 target 属性为 _parent;
(2)在 js 中使用 window.location.href 跳转,让父页面跟着一起跳转,即在window.location.href=url后面加上window.parent.location.href=url ;

使用iframe框架后的页面跳转时目标页面变为iframe的子页面的问题

标签:cin   set   tar   win   location   ros   跳转   子页面   ram   

原文地址:http://www.cnblogs.com/liuhx/p/7773114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!