为啥这样写页面中不显示“系好安全带,准备起航--目标JS文字!”这个内容,有一个按钮,点击也没效果!一个人检查很久了,求大神指教,谢谢!!
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<script type="text/javascript">
document.write("系好安全带,准备起航--目标JS文字!"+"<br/>");
function mycon{
var myc=confirm("起航吗?");
if(myc==true){
alert("准备好了,起航吧!");
}
else{alert("JS");}
}
</script>
</head>
<body>
<form>
<input type="button" value="确定" onclick="mycon()"/>
</form>
</body>
</html>