1、为啥下面JS代码,不能在上面窗口运行。。。但在DW中却可以。。。
---------------------------我是分割线---------------------------
document.write("系好安全带,准备启航--目标JS");
alert(“准备好了,起航吧!”);
----------------------------我是分割线---------------------------
2、另外document.write can be a form of eval 是个什么鬼?没有看到有简单明了的解释呀
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script src="script.js"></script>
</head>
<body>
</body>
</html>
你没有引入外部文件
document.write("系好安全带,准备启航--目标JS");
function mychar(){
alert("哒湿……准备好了,起航吧");
}
写个按钮调用一下 mychar()即可
document.write("系好安全带,准备启航--目标JS");
function jump(){
var mychar="哒湿……准备好了,起航吧…!";
alert(mychar);
}
alert要写在方法里,前面 的按钮引用这个方法