子iframe刷新父ifrmae的方法】的更多相关文章

//子iframe刷新父ifrmae的方法parent.location.href="";parent.location.reload();…
利用layui实现菜单效果时,刷新页面仍回到首页状态,需要 实现iframe子页面刷新父元素不刷新,下面是代码 //刷新时禁用F5的默认事件 $(document).keydown(function (event) { ) { event.preventDefault(); //组织默认刷新 right1.attr('src', dataUrl);//指的是子页面iframe的src } });…
项目中使用案例: 父窗体 <s:form namespace="/forexagent" id="listSearchForm" name="theForm"    theme="simple" action="listAgentParametersChangeRecord?funcode=011002005"> ...... <s:textfield cssClass="px1…
/*Iframe刷新父窗口的几种方式在iframe的子页面中,使用onload刷新父页面的时候,遇到了一些问题. 1.目前来说,测试成功,并且兼容IE6/7和FF的刷新方式. */ <script language=JavaScript> parent.window.location.href="url"; </script> //2.个别情况下出现IE6/7“没有权限”的JS错误提示信息,FF下也出现错误提示.原因不明. <script language…
最近开始了一个winform项目,原先一直都是web项目.遇到个问题,就是在框架内,左侧和中间的main都是用panel来实现的form,就是把form窗体打开到panel里,实现左侧是导航,中间是操作区域的效果.中间区域要想控制左侧导航或者顶部导航都是困难的,因为这时没有激活左侧窗体,操作顶部相对容易,因为顶部是父窗体,子窗体操作父窗体的例子很多,百度一下.我之前也写过一篇:winform打开子窗体后,在子窗体中刷新父窗体,或者关闭子窗体刷新父窗体. 同样是子窗体相互操作起来挺困难,可以通过设…
winform打开子窗体后,在子窗体中刷新父窗体,或者关闭子窗体刷新父窗体,搜集了几个方法,列举如下: 一 . 所有权法 父窗体,名称为“fuForm”,在父窗体中有个公共刷新方法,也就是窗体数据初始化方法.如: public void reLoad_method() { //窗体数据初始化方法,fuForm_Load中的全部操作,调用此方法可实现数据的刷新 } fuForm中打开ziForm时需要设置所有者,就是ziForm的所有者是fuForm,代码如下: ziForm _ziForm =…
第一种方法: 用委托,Form2和Form3是同一组 Form2 C#代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace TestMouseMove { public delegate void…
本人比较懒,直接从网上转载了一篇比较合适的文章,只是文章格式有点乱,地址是 http://aspnet.blog.163.com/blog/static/17515510920121126104433237/ 调用窗体(父):Form1,被调用窗体(子):Form2 方法1:   所有权法//Form1://需要有一个公共的刷新方法public   void   Refresh_Method(){//...}//在调用Form2时,要把Form2的所有者设为Form1Form2   f2   =…
转自:http://heisetoufa.iteye.com/blog/382684 第一种方法: 用委托,Form2和Form3是同一组 Form2  using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespac…
调用窗体(父):Form1,被调用窗体(子):Form2方法1:   所有权法//Form1://需要有一个公共的刷新方法public   void   Refresh_Method(){//...}//在调用Form2时,要把Form2的所有者设为Form1Form2   f2   =   new   Form2()   ;f2.Owner   =   this;f2.ShowDialog()   ;//Form2://在需要对其调用者(父)刷新时Form1   f1   ;f1   =  …
今天再次使用showModalDialog(),发现了两个问题,一是子窗口如何刷新父窗口,二是窗口的参数问题. 1 子窗口刷新父窗口 如果是window.open();问题就好办,直接用window.opener.location.reload();就搞定了 但是如果是window.showModalDialog(),它里面是没有window.opener的,不能用opener引用父窗口,直接调用用报错. 总结了一下有两种方法可以解决,一是在子窗口中刷新父窗口,二是在子窗口关闭后,父窗口自己刷新…
vue中 父子组件的通信: 子组件通过 props: { //子组件中写的. childMsg: { //字段名 type: Array,//类型 default: [0,0,0] //这样可以指定默认的值 } } 父组件的话,直接就可以写在 子组件的标签上.比如    childMsg="1,1,1 "  ,这样就可以了. 子组件调用父组件的方法可以使用this.$emit()  这个方法.. <el-col :span="16" class="h…
Vue子组件调用父组件的方法   Vue中子组件调用父组件的方法,这里有三种方法提供参考 第一种方法是直接在子组件中通过this.$parent.event来调用父组件的方法 父组件 <template> <div> <child></child> </div> </template> <script> import child from '~/components/dam/child'; export default {…
vue子组件通知父组件使用方法 <template> <mt-field placeholder="验证码" v-model="getverifycode" :attr="{maxlength: 4}"> <img :src="imgcode" class="verifycode"> <i class="icon iconfont iconefresh&q…
1.子iframe里调用父级的方法:window.parent.document.   2.父级里调用子集iframe:window.frames["iframe_text"].document.   下面是例子: index.html <HTML>     <HEAD>         <TITLE> Test Page </TITLE>         <meta http-equiv="Content-Type&qu…
iframe页面是内嵌到父页面的,当点击iframe页面的服务器控件时,默认只刷新iframe页面,父页面是不会刷新的.若想刷新父页面,可以使用js来实现,如 1. parent.location.reload(); 这种方法会重新加载整个页面.但如果要在原页面的基础上传递参数,则可以使用下面的方法: 2.top.document.location.href='xxx.aspx?id=xx'. 但这两种方法都有一个共同的缺点,就是iframe内嵌页面的状态不会保存了,刷新后会重新回到第一次加载的…
近期碰到这样一个问题,子页面操作后需要刷新父页面datagrid元素,刚开始用这种方式刷新,$("#talbe",window.parent.document).datagrid("reload");因使用window.parent.document方法能得到父页面中的元素,想当然这种方法刷新datagrid组件当然可以....结果,报错~ 最后找到一种解决方案,即 父页面中定义一个刷新表格的方法: function reloadDatagrid(){       …
我的项目操作都是在子页面弹窗中执行,当我操作成功或失败时,都要关闭当前子窗口,刷新父页面: $this->assign('jumpUrl',"javascript:window.parent.location.reload();"); 上面这行代码,在tp3.2中可以在$this->success()或error()的提示显示之后,完成关闭当前子窗口并刷新父页面,然后,如果你想关闭当前子窗口并指定父页面进行跳转,可以这样: $this->assign('jumpUrl…
重点是阻止默认的刷新,这样外部页面就不刷新了,然后指定刷新iframe,我下面给出了思路 document.onkeypress = function(e){ if(e.keyCode == 116){ e.preventDefault(); //组织默认刷新 var iframeSrc = iframe.src; iframe.src = iframeSrc; } } iframe页面里再写如下: var iframeSrc = parent.iframe.src; document.onke…
<input type="button" onclick="edit(${it.id?c})" class="layui-btn layui-btn-normal layui-btn-sm" value="编辑"> function edit(id) {//iframe层 layer.open({ type: 2, title: '编辑服务商', shadeClose: true, shade: 0.8, area…
原理:利用委托和事件,本文将以图文并茂的例子讲述,告诉我们So Easy ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 一.窗体展示 首先我们看到是一个父窗体,…
   我们来实现这样一个功能:当父窗体打开一个子窗体时隐藏父窗体的Panel,而当子窗体关闭时让Panel显示.实现的主要思路是创建一个子窗体的父类并在类中声明一个委托,当父窗体调用子窗体时绑定显示Panel的方法.如下: 1.新建一个项目,分别添加MainForm.BaseChildForm两个窗体,其中MainForm的IsMdiContainer设为True. 2.在BaseChildForm里声明一个委托void ClosingHandler(),并重写OnFormClosing方法:…
建一个接口 比如 iMainForm接口内声明个方法 比如 Refresh()主窗体 实现这个接口 主窗体打开子窗体时这样写 子窗体.Owner = this;子窗体.ShowDialog(); ---------------------------------子窗体内你想啥时候刷新都行(this.Owner as iMainForm).Refresh(); ---------------------------------以上方法非常泛用 http://bbs.csdn.net/topics/…
HTML: <body>    <form id="form1" runat="server">       <div> <div class="text-tabs">/*导航栏*/ <a class="text-tab" data-target="/" href="javascript:void(0);" onclick="…
数据表格字段: {field: 'novelId', title: '小说ID',width:100,templet: '<div><a href="javascript:;" _href="/contentManage/content-chapters.html" novelName="{{d.name}}" onclick="showChapters(this,{{d.novelId}});" class…
iframe里面的子页,用parent.location.href = parent.location.reload();如果是window.open 打开就用opener.location.reload();…
1,子组件 TodoItem.vue  : <template>   <div class="todo-item" :class="{'is-complete':todo.completed}">       <p>           <input type="checkbox" @change="markComplete">           {{todo.title}}…
回调函数(推荐) 地址:https://ourcodeworld.com/articles/read/409/how-to-update-parent-state-from-child-component-in-react 获得父组件的实例(不推荐) var parent = this._reactInternalInstance._currentElement._owner._instance; 地址:https://stackoverflow.com/questions/34257665/i…
链接: http://wenwen.sogou.com/z/q242758397.htm…
<script type="text/javascript"> $(document).ready(function() { $(".fancybox").fancybox({ width:1200 , afterClose : function(){ location.reload(); return; } }); $(".imageFancybox").fancybox({ }); }); </script>…