问答详情
源自:2-7 编程练习

这样可以实现

<!DOCTYPE html>
<html>
<head>
    <title> new document </title>
    <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
    <script type="text/javascript">
       function openWindow() {
           const s = confirm("是否打开");
           if (s==true)
        {
            const t = prompt("请输入您要打开的网址:");
            window.open(t,'_blank','width=600,height=500,menubar=no,toolbar=no');
        }
        else
        {
            return;
        }
       }
    </script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>


提问者:qq_慕九州2005229 2020-01-02 14:57

个回答

  • 廉小男
    2020-01-03 12:01:35

    http://img3.mukewang.com/5e0ebb1f0001af2610450462.jpg

    基本功能可以实现了。就是你没有默认打开网址,还有就是prompt消息对话框,别人点取消也会打开新网站。我这样写的,差不多,不过我没写else。