alert沒效果
問題:confirm沒有問題,但是alert沒有效果。
<!DOCTYPE?HTML> <html> <head> <meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"?/> <title>系好安全帶,準備啟航</title> <!--引入外部文件的方式--> <script?type="text/javascript"> ????document.write("系好安全帶,準備起航-目標JS"); ???? ????function?lick(){ ????????var?mychar=confirm("準備好了,起航吧!"); ????????????if(mychar==ture){ ????????????????alert("恭喜您,已經掌握此技能"); ????????????}else{ ????????????????alert("請重新學習課程內容吆"); ????????????} ????} </script> </head> <body> <button?onclick="lick()">點擊彈出</button> </body> </html>
2017-05-11
if(mychar==ture){
你寫錯了,true不是ture