为什么这段代码,我的document.write("系好安全带,准备启航--目标JS”文字")出现不出来
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script type="text/javascript" >
function fun()
{
alert("准备好了,起航吧!");
}
document.write("系好安全带,准备启航--目标JS”文字");
</script>
</head>
<body>
<input name="button" type="button" value="提示按钮" onclick="fun()" />
</body>