为什么点击无效啊?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script type="text/javascript" src ="script.js">
/*document.write("系好安全带,准备起航--目标JS");
alert("准备好了,起航吧!");*/
</script>
</head>
<body>
<input type ="button" name ="button" onClick ="OK()" value ="请点击" />
</body>
</html>
//下面是写在js文件中的语句
document.write("系好安全带,准备起航--目标JS");
function OK(){
alert("准备好了,起航吧!");
}