美文网首页
打开关闭窗口

打开关闭窗口

作者: 洛洛kkkkkk | 来源:发表于2017-04-20 19:21 被阅读0次
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title>打开关闭窗口</title>
            <style type="text/css">
                
            </style>
        </head>
        <body>
            <div class="open">
                点我打开窗口
            </div>
            <div class="close">
                点我关闭窗口
            </div>
            <a href="http://www.baidu.com" target="kk">dsadsa</a>
        </body>
        <script type="text/javascript">
            var opendiv=document.querySelector(".open");
            var closediv=document.querySelector(".close");
            opendiv.onclick = function () {
                //通过window.open()来打开一个新的窗口
                //第一个传输可以给链接地址,用于打开新的窗口的默认地址
                //第二个参数和a标签的target属性一样
                //窗口的特征,打开新的窗口的一些属性,例如宽高
                //第三个参数是窗口特征,常用的有top(新窗口的距离屏幕上边的位置),left(新窗口的距离屏幕左边边的位置),width,height(新窗口的宽高))
                var newwindow = window.open("http://www.baidu.com","_blank","height=300,width=300");
                newwindow.moveTo(200,100);
    //          setTimeout(function(){
    //              newwindow.close();
    //          },2000);
            }
            closediv.onclick = function () {
                //关闭当前窗口
                window.close();
            }
            //在JS里面,声明的全局变量或者没有绑定事件的方法,一般都会成为window对象的属性
            
            //moveTo moveBy
            //可以修改窗口的位置,moveTo是将窗口移动到某个位置,moveBy是在原有的基础上增加一个距离
        </script>
    </html>
    

    相关文章

      网友评论

          本文标题:打开关闭窗口

          本文链接:https://www.haomeiwen.com/subject/bvolzttx.html