iframe是怎么跳转的

在main.jsp中

    <iframe frameborder="0" marginheight="0" marginwidth="0" width="100%"
        height="74px" scrolling="no" src="${pageContext.request.contextPath}/jsp/admin/goods/top.jsp"></iframe>

    <iframe frameborder="0" marginheight="0" marginwidth="0" width="160px"
        height="550px;" scrolling="no" src="${pageContext.request.contextPath}/jsp/admin/goods/left.jsp"
        style="float: left;"></iframe>
    <iframe name="Right" frameborder="0" marginheight="0" marginwidth="0" width="1050px"
        height="540px;" scrolling="no" src="${pageContext.request.contextPath}/jsp/admin/goods/welcome.jsp"
        style="float: left;padding-top: 10px; padding-left: 5px;"></iframe>

在left.jsp中

<a href="${pageContext.request.contextPath }/Users/getAllUsers?page=1&status=0" target="Right">${a.fun_name}</a>

跳往name="Right"的iframe中

时间: 2024-10-13 12:10:44

iframe是怎么跳转的的相关文章

实现了iframe的页面跳转的功能

之前没有接触过iframe的相关功能,最近看到项目中基本上都是用iframe嵌套子页面,于是自己想编写实现这个过程,为以后的工作提供便利. main页面 <!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" href=&quo

iframe session过期跳转到登陆页面

在login.jsp中添加js: if(window !=top){ top.location.href=location.href; } <script type="text/javascript"> if (window.parent != window) { window.parent.location.href = window.location.href; } </script>

在Iframe框架下如何跳转到登录界面

在Iframe框架下跳转到登录界面总会跳到子界面中,类似于下图 试用Respon.Redirect()不行, 用Js函数,但我跳转代码都是写在cs文件中的,用Respose.write(),js函数根本没有执行. 最后看到一文章,在后台用Respon.Redirect(),而在登录界面中加入js,如下代码 <script language="JavaScript" type="text/javascript"> if (window != top) to

黄聪:如何阻止iframe里引用的网页自动跳转

今天做了个网页,要在网页里设置一个iframe,然后套用其他的网站.使用http://luanqi-cat.blogbus.com 这个网址的时候,出现了莫名其妙的问题,我的网页居然会强制自动跳转到这个网页上.搜索了一番,才知道原来这个网页用了如下的一段代码: if (top.location != self.location) {top.location=self.location;} 使用里这段代码之后,会自动判断当前的location是否是顶层的,即是否被嵌套到iframe里面了,如果是,

关于使用struts2时子窗体页面跳转后在父窗体打开的问题以及Session过期后的页面跳转问题

问题1:传统的系统界面,iframe了三个页面,上,左,右,用户点击注销的按钮在上面得top.jsp里面,方法:<a href="../adminAction/admin_logout.action">退出系统</a>退出之后你会发现,只是刷新了top.jsp上面那个iframe,其他两个还在,如何解决? 解决办法: target="_top",就就是它.加多这个变成:<a href="../adminAction/admin

20150311&mdash;html中iframe(转发)

JS实现iframe框架页面跳转和刷新 一.js方式的页面跳转 1.window.location.href方式 <script language="javascript" type="text/javascript"> window.location.href="index.html"; </script> 2.window.navigate方式跳转 Firefox不支持 <script language=&quo

div页面跳转

div链接,跳转页面,如何点击<a>在div里打开网页 了解后的总结: <javascript> function 跳转函数名(){ document.getElementById("content").src="iframe中后来跳转的页面"; }</javascript> <div><a href="javascript:跳转函数名">点击我跳转</a></div&

关于窗口跳转的一些总结

在应用有frameset或者iframe的页面时,parent是父窗口,top是最顶级父窗口(有的窗口中套了好几层frameset或者iframe),self是当前窗口, opener是用open方法打开当前窗口的那个窗口. 1.window.self 功能:是对当前窗口自身的引用.它和window属性是等价的. 语法:window.self 注:window.self.window.self是等价的 2.window.top 功能:返回顶层窗口,即浏览器窗口. 语法:window.top 注:

vue tab嵌入iframe切换不刷新,相对完整的方案

说到Vue的简单.便捷.高效,谁用谁喜欢,自然企业应用也来玩一把,三大经典组件:树控件,网格控件,选项卡控件: 本章先说选项卡tab控件的嵌入iframe. 本次主要解决以下问题: 1.tab控件混合vue-component-view与iframe-view; 2.切换tab, iframe-view 保持原界面不刷新,与keep-alive效果等同; 3.关闭tab中的iframe-view后,将重新打开,不作cache; 问题1: 将 <router-view></router-v