如果我错了,请纠正我
<html>
<body>
<script>
function newyear() {
alert("all the best");
}
>
</script>
<form>
<input type="button" onclick="newyear()" value="newyear" />
</form>
</body>
</html>
答案 0 :(得分:1)
<html>
<body>
<script>
function newyear() {
alert("all the best");
}
// remove the extra character here
</script>
<form>
<input type="button" onclick="newyear()" value="newyear" />
</form>
</body>
</html>
答案 1 :(得分:0)
你有额外的角色(&gt;)。删除它,你的代码没问题。 像这样:
<html>
<body>
<script>
function newyear() {
alert("all the best");
}
</script>
<form>
<input type="button" onclick="newyear()" value="newyear" />
</form>
</body>