为什么写在“script.js”里的document.write("系好安全带,准备启航--目标JS"+"<br><br>");不起作用?
.HTML <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>系好安全带,准备启航</title> <!--引入外部文件的方式--> <script scr="scritp.js" type="text/javascript"> </script> </head> <body> 这是个JS练习 <br/> <input type="button" value="请点击我" onclick="i.alertMessage()"> </body> </html> .JS document.write("系好安全带,准备启航--目标JS"+"<br><br>"); var i={ alertMessage:function() { var m=confirm("你准备好了吗?"); if(m===true) {alert("让我们大干一场吧!")} else {alert("还是洗洗睡了吧~~")} } }
为什么写在“script.js”里的document.write("系好安全带,准备启航--目标JS"+"<br><br>");不起作用?