问答详情
源自:-

请问我这段代码哪里错了?求助!!

<!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 open=confirm("是否打开新的网页?");

if(open==ture){

var url=prompt("请输入要打开网页的网址","www.baidu.com");

if(url==ture){

window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');

}

else {

alert("再见!")

}

}

else {

alert("再见!")

}



}

 

 </script>

 

 </head> 

 <body> 

<input type="button" name="buttom" value="点击我,打开新的网页"  onclick="openwindow()">

 </body>

</html>


提问者:没有你烦我有多烦恼 2017-04-10 12:34

个回答

  • 学习js
    2017-04-11 10:20:13
    已采纳

    true,是true不是ture

  • 鱼43
    2017-04-11 09:51:50

    input输入name 名"buttom"拼写错了