perry在路上
2017-04-03 16:08
如何破 请指点
onclick=" contxt()" 点击事件之后要响应 前面要定义函数加function
<!DOCTYPE HTML>
<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>
OKOK
我把你的代码加上了function之后在DW里运行保存,用不同的浏览器打开,都是正常的,实在搞不懂了,你要是解决了,在评论里告诉我们一下吧
funtion contxt(){
}
<!DOCTYPE HTML>
<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>
在第七行开头输入function就可以了
JavaScript入门篇
739817 学习 · 9566 问题
相似问题