zoukankan      html  css  js  c++  java
  • iframe框架下子页面调用另一个子页面的方法;

    parent.window.frames["id_tabcon_453"].contentDocument.getElementById('search_fresh').onclick();
    获取到iframe的id;可以获取到需要的iframe架构;
    window.frames["id_tabcon_453"].document.getElementById('search_fresh').onclick();
    这种方法我用的时候不对;
    // 关闭后是我的任务页面进行刷新
                                // 判断浏览器是不是ie;谷歌和ie的处理方法不同
                                if (!!window.ActiveXObject || "ActiveXObject" in window){
                                    // ie的处理方法
                                    parent.window.frames["id_tabcon_453"].document.getElementById('search_fresh').onclick();
                                }else{
                                    // 谷歌的处理方法
                                    parent.window.frames["id_tabcon_453"].contentDocument.getElementById('search_fresh').onclick();
                                }
                                // parent.window.frames["id_tabcon_453"].contentDocument.getElementById('search_fresh').onclick();
                                parent.iFrameTab.closeTabID('qc_task_manage_my_info_re_checked'+json_id);
    希望自己写的东西能够对大家有所帮助!谢谢
  • 相关阅读:
    ubuntu-虚拟机跟主机资源共享的实现方法
    git- 仓库创建、修改、提交、撤销
    theme- 工作原理
    makeMtk- user 版本编译
    Button- 自定义控件添加自定义属性
    actionMode
    screen-Orientation 横竖屏设置
    worktools-mmx 添加编译模块
    eclipse- MAT安装及使用
    worktools-monkey 测试工具的使用
  • 原文地址:https://www.cnblogs.com/mrxinxin/p/11383401.html
Copyright © 2011-2022 走看看