为了账号安全,请及时绑定邮箱和手机立即绑定

请问这个需求应该怎么实现?

我想要在prompt对话框中输入网址,点击确定打开该网页,下面是我的代码,不能实现功能,请问我改怎么写呢?谢谢。

<!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 address=prompt("请输入网址:");

      if(address!=null){

window.open(address,'_blank','width=500,height=500,top=100,left=100');

      }else{

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

      }

      


  } 

</script>

</head>

<body>

    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >

</body>

</html>


正在回答

5 回答

试了下你的功能已经实现了,

1-输入的网址前面要有http://  这样才是标准网址格式

2-只有prompt弹出点了取消的时候变量才等于null后面的else才触发,这我也不太清楚,我猜是因为空值不等于null吧

0 回复 有任何疑惑可以回复我~
#1

_Jack_Han_ 提问者

非常感谢!我输入的网址没有写http://
2016-04-24 回复 有任何疑惑可以回复我~

function Wopen(){

var xinbox=confirm("是否新建窗口?");

if(xinbox==true)

 {

         var ttb=prompt("请输入网址","http://www.imooc.com");

         if(ttb=="http://www.imooc.com")

      {

window.open('http://www.imooc.com','_self',   'width=500,height=200,top=300,left=100,menubar=no,toolbar=no, status=no,scrollbars=yes')

        }

         else

            {alert("输入错误");}

   }

else 

 {

  alert("不输网址,你点进来干毛线");

  }

}


0 回复 有任何疑惑可以回复我~
#1

_Jack_Han_ 提问者

谢谢。
2016-06-19 回复 有任何疑惑可以回复我~

代码正确的

0 回复 有任何疑惑可以回复我~

你的网址没有输入进去呀 window.open后面要输入你要打开的网页的网址的

0 回复 有任何疑惑可以回复我~

<!DOCTYPE html>
<html>
 <head>
  <title> new document </title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>  
  <script type="text/javascript">
 
    if(confirm("是否打开")){
    // 新窗口打开时弹出确认框,是否打开


    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
       var addn=prompt("确认打开的网址"," http://www.imooc.com/");
    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
        window.open(addn,'_blank','width=400,height=500,menubar=no,toolbar=no')
    }
   
  </script>
 </head>
 <body>
   <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问这个需求应该怎么实现?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信