总共包含三个页面(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>

 

相关文章:

  • 2021-07-19
  • 2022-12-23
  • 2021-09-21
  • 2021-07-04
  • 2022-12-23
猜你喜欢
  • 2022-01-16
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2021-05-30
  • 2021-06-24
相关资源
相似解决方案