为什么没有弹出对话框
为什么没有弹出对话框
为什么没有弹出对话框
2016-11-18
<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=" " />
<!--单击按钮后,调用函数,onclick为点击事件。-->
</form>
</body>
</html>举报