为什么我得到一个SyntaxError:missing;在声明之前

时间:2013-03-15 10:04:39

标签: javascript

我收到一个SyntaxError:缺少;在声明之前。我不知道为什么我收到此错误,因为我的代码与我正在使用的教科书中的代码完全相同。请帮忙。我将发布代码,并评论语法错误的位置:

<!DOCTYPE html>
<html lang="en">
<head>
<title> Practive</title>
<meta charset="utf-8">
<style>
input{display: block;
padding-bottom: 10px;
width: 250px;
text-align: left;}

label {float:left;}
</style>

<script type="text/javascript">
<!--
fuction validateForm()                           // SyntaxError: missing ; before statement
    //  before v
{
if (document.forms[0].userAge.value < 18){
alert ("Age is less than 18!");
return false;
} // end if 
alert ("Age is valid.");
return true;
} // end function validateForm
// -->
</script>
</head>

<body>
<h1> JavaScript Form Handling </h1>
<form method="post" action="http://webdevfoundations.net/scripts/formdemo.asp" onsubmit="return             validateForm();"> 
<label for="userName">Name: </label>
<input type="text" name="userName" id="userName">
<label for="userAge">Age:   &nbsp </label>
<input type="text" name="userAge" id="userAge">
<input type="submit" value="send information" id="submit">
</form>     

</body>

</html>

3 个答案:

答案 0 :(得分:4)

请注意:

fuction validateForm()  

应该是:

function validateForm()  

你忘记了单词功能中的N并修复了解决问题的方法。 :)

答案 1 :(得分:1)

在您的脚本中编写function而非函数

function validateForm()                        
{
    if (document.forms[0].userAge.value < 18) {
        alert("Age is less than 18!");
        return false;
    } 
    alert("Age is valid.");
    return true;
} 

答案 2 :(得分:1)

你在调用函数时错了

替换

fuction validateForm()

。通过

function validateForm()

你在调用函数时拼错了。