<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script src="script.js"></script>
</head>
<body>
<form>
<input type="button" onclick="open()" value="点击我" />
</form>
</body>
</html>
*******************下面js文件***********************
documen.write("系好安全带,准备起航,目标--js");
function open()
{
alert("准备好了,启航吧");
}
open是jas语言里面的关键字 保留字
就是因为open是关键字
1- “documen”加个“t”
2-“open”这个单词做函数不行,有别的效果。换成“fun”什么的就好了
调试过了 代码没问题
<script type="text/javascript">
document.write("系好安全带,准备起航,目标--js");
function open()
{
alert("准备好了,启航吧");
}
</script>
这样试试,如果不行,那可能是因为open是个关键字
<input type="button" onclick="open()" value="点击我" />
后面多了一个/
onclick “c”大写试试
document写错了少写个t“”
你定义完函数以后得调用吧,你不调用弹不出来。
documen.write("系好安全带,准备起航,目标--js");
function open()
{
alert("准备好了,启航吧");
}
open();
你试试