• js---iframe


    一、获取iframe父页面元素

    1、Jquery方法

    方法一:
                $("#父窗口元素ID",window.parent.document);
                父窗口的父窗口的元素就可以用:$(selector, window.parent.parent.document);
    方法二:
                $(window.parent.document).find(selector);
    方法三:
                $("").parent().find("");

    2、Js方法

    window.parent.document.getElementById("父窗口的元素ID");

    二、在父窗口中获取iframe中的元素 

    1、Jquery方法

    方法一:

                $("#iframe的ID").contents().find("#iframe中的控件ID")

    方法二:

                $("#iframe中的控件ID",document.frames("frame的name").document)

    2、js方法

    方法一:

                window.frames["iframe的name值"].document.getElementById("iframe中控件的ID")

    方法二:

               document.getElementById("iframe").contentWindow.document.getElementById("元素id")

  • 相关阅读:
    Docker入门
    15个Docker基本命令及用法
    Docker系列
    docker
    Docker 常用命令
    查看用户列表在Linux
    Spring boot Mybatis
    CountDownLatch和CyclicBarrier 专题
    Spring Boot MyBatis 连接数据库
    Spring Boot MyBatis 通用Mapper插件集成 good
  • 原文地址:https://www.cnblogs.com/zhengziru/p/9148995.html
Copyright © 2020-2023  润新知