问答详情
源自: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(){
   var ssz=confirm("是否打开网站")
   if (ssz==true){
   var qwe=prompt("请输入网站地址","http://www.imooc.com");    
   if (qwe!=null){
   window.open('http://www.imooc.com','_blank','width=500,height=400,menubar=on,toolbar=on');    
   }
   }
   }
 </script>
</head>
<body>
 <input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>

</html>

请问怎么写按照输入框的地址打开网站呢 

例如在输入框输入打开百度地址  那就打开百度  而不是全部都打开慕课网

提问者:sejeze 2015-07-09 10:43

个回答

  • 盛臣
    2015-07-09 10:50:50
    已采纳

     if (qwe!=null){
        window.open(qwe,'_blank','width=500,height=400,menubar=on,toolbar=on');    
        }