<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数调用</title>
<script type="text/javascript">
function contxt() //定义函数
{
alert("哈哈,调用函数了!");
}
</head>
<body>
<form>
<input type="button" value="戳我吧" onclick="contxt() " />
</form>
</body>
</html>
热门评论
都可以的,我觉得只是判断的先后顺序不一样罢了,结果还是一样的