问答详情
源自:2-5 JavaScript-打开新窗口(window.open)

为什么我不论输入什么网址,打开的页面都是“无法访问此页面(网址变为http://localhost:8383)”?

第一次提问,代码复制不过来,如图

https://img.mukewang.com/5b7195ed0001b4b307350599.jpg

https://img.mukewang.com/5b7195ef0001c29405580786.jpg


提问者:慕娘4663474 2018-08-13 22:30

个回答

  • 比天空更远
    2018-09-28 15:10:43

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>window.open</title>

    <script type="text/javascript">

    function Wopen(){

        var open;

         open = prompt(请输入网址:,http://);

        if (open==null){

            document.write("请输入网址!");

        }

        else {

     

        window.open(open,'width=600,height=400,top=100,left=0');  


      

        }}

    </script>

    </head>

    <body>

        <input name="button" type="button" onClick="Wopen()" value="点击我,打开你想要的网址!" />

    </body>

    </html>


  • MrLinKing
    2018-08-13 23:06:14

    应该是把window.open里面的’lu‘的引号去掉试试