<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数调用</title>
<script type="text/javascript">
function contxt() //定义函数
{
alert("哈哈,调用函数了!");
}
contxt();
</script>
</head>
<body>
<form>
<input type="button" value="点击我" onclick=" " />
</form>
</body>
</html>
你第十行里
contxt();
这已经在script里面调用过了。
在15行里
<input type="button" value="点击我" onclick=" " />
onclick=" "," "里面可以写函数调用!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数调用</title>
<script type="text/javascript">
function contxt() //定义函数
{
alert("哈哈,调用函数了!");
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我" onclick="contxt()" />
</form>
</body>
</html>
<form>...</form>里面定义了按钮提示,点击后的内容就是function定义的函数里的