BOM中的窗口弹出和关闭



<html>
    <head>
        <meta charset="utf-8" />
        <title>title>
    head>

    <body>
        <button id="a">打开一个窗口 button>
        <button id="b">关闭一个窗口 button>
    body>
html>
<script>
    var start;
        document.getElementById("a").onclick=function(){
            start=window.open("https://hao.360.cn/?src=lm&ls=n22543d5f9c","",width=300,height=300);

        }
        document.getElementById("b").onclick=function(){
            start.close();
        }
    script>

你可能感兴趣的:(js事件集中营)