zoukankan      html  css  js  c++  java
  • Frameset 两页面互调控件技术案例

    总共包含三个页面(Html),分别为Parent.Html、ChildA.Html、ChildB.Html

    Parent.Html页面代码

    <frameset cols="50%,*"> 
        <frame name="left" src="1.html"> 
        <frame name="right" src="2.html"> 
    </frameset>

    ChildA.Html页面代码

    <html>
    <head>
        <script>
            function setValue() {
              window.parent.document.getElementById("right").contentWindow.document.getElementById("txt2").value = document.getElementById("txt1").value;
            }
        </script>
    </head>
    <body>
        <input type="text" id="txt1" onkeyup="setValue()" />
    </body>
    </html>

    ChildB.Html页面代码

    <html>
    <head>
        <script>
            function setValue() {
               window.parent.document.getElementById("left").contentWindow.document.getElementById("txt1").value = document.getElementById("txt2").value;
            }
        </script>
    </head>
    <body>
        <input type="text" id="txt2" onkeyup="setValue()" />
    </body>
    </html>
  • 相关阅读:
    Redis单机操作
    Scala
    RDD算子
    Python学习之旅(七)
    python学习之旅(六)
    python学习之旅(五)
    python学习之旅(四)
    python学习之旅(二)
    python学习之旅(三)
    Python学习之旅(一)
  • 原文地址:https://www.cnblogs.com/xiaocaibaodao/p/4095257.html
Copyright © 2011-2022 走看看