首页 > 其他 > 详细

Frameset 两页面互调控件技术案例

时间:2014-11-13 18:00:26      阅读:176      评论:0      收藏:0      [点我收藏+]

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

 

Frameset 两页面互调控件技术案例

原文:http://www.cnblogs.com/xiaocaibaodao/p/4095257.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!