<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function click(){
alert("点击成功");
}
</script>
</head>
<body>
<input type="button" name="btt" value="按钮" onclick="click();"/>
</body>
</html>
不要用click,用其它方法名
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function aa(){
alert("点击成功");
}
</script>
</head>
<body>
<input type="button" name="btt" value="按钮" onclick="aa();"/>
</body>
</html>
不要用关键字作为方法名