码迷,mamicode.com
首页 > Windows程序 > 详细

[html]window.open 使用示例

时间:2016-03-10 14:47:48      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>父窗体</title>
    <style type="text/css">
        html{overflow-x: hidden;}
        body{overflow-x: hidden;}
    </style>
    <script type="text/javascript">
        function openWin() {
            //打开子窗体
            window.open(a2.html, _blank, height=400px,width=750px);
        } 
    </script>
</head>
<body>
    <input type="text" value="123" id="x" />
    <a href="javascript:openWin()">类别2</a>
</body>
</html>
<!doctype html>
<html>
 <head>
  <meta charset="UTF-8">
  <title>子窗体</title>
  <script type="text/javascript">
    function onClick(){
        window.opener.document.getElementById(x).value = document.getElementById(y).value;
        window.close();
    };
  </script>
 </head>
 <body>
  <input type="text" value="1234" id="y" />
  <a href="#" onclick="onClick()">修改并关闭</a>
 </body>
</html>

在 IE、Chrome 测试通过。

[html]window.open 使用示例

标签:

原文地址:http://www.cnblogs.com/z5337/p/5261572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!