doumaji6215 2012-12-28 22:48
浏览 51
已采纳

JavaScript表单验证 - 函数未在提交时运行。

I'm currently working on some very basic validation for a form that posts a bunch of information from a web form to an SQL database with a simple PHP script. The PHP script is working fine, and the values are being posted to the database, however the validation I have written appears to be ignored. I've attempted to fix it for a while now and can't see any glaring mistakes, but apologies if it's anything trivial.

HTML:

<form name = "registerForm" method = "POST" onsubmit = "return ValidateRegistration()" action = "createUser.php">
    <p class = "register">Desired Username*</p>
    <p class = "registerDesc">Between 1 and 20 characters long</p>                  
    <input type = "text" name = "username" class = "register">
    <p class = "register">Desired Password*</p>
    <p class = "registerDesc">We won't force securty onto you; between 6 and 255 characters long. No other criteria.</p>
    <input type = "password" name = "password" class = "register">
    <p class = "register">Confirm Password*</p>
    <input type = "password" name = "confirmPassword" class = "register">
    <p class = "register">Email Adress*</p>
    <input type = "text" name = "email" class = "registerEmail">
    <p class = "register">Bio</p>
    <p class = "registerDesc">Extra information such as hobbies, occupation, background information. Maximum 4096 characters. We can do this later.</p>
    <textarea name = "bio" class = "registerBio"></textarea>
    <p><input type = "submit" class = "registerButton" value = "Register"></p>
</form>

JavaScript:

function ValidateRegistration()
{
    //username block
    var username=document.forms["registerForm"]["username"].value;
    if (username==null || username==" ")
    {
        alert("You must provide a username");
        return false;
    }       
    if (username.length>20 || username.length<1)
    {
        alert("Sorry, your username must be between 1 and 20 characters long.");
        return false;
    }
    //etc....
}
  • 写回答

5条回答 默认 最新

  • douya2006 2012-12-28 23:19
    关注

    Exactly your code is working for me:

    Created following test.html file and opened in chrome:

    <html>
    <head>
    <script>
    function ValidateRegistration()
    {
        //username block
        var username=document.forms["registerForm"]["username"].value;
        if (username==null || username==" ")
        {
            alert("You must provide a username");
            return false;
        }       
        if (username.length>20 || username.length<1)
        {
            alert("Sorry, your username must be between 1 and 20 characters long.");
            return false;
        }
        //etc....
    }
    </script>
    </head>
    <body>
    <form name = "registerForm" method = "POST" onsubmit = "return ValidateRegistration()" action = "createUser.php">
        <p class = "register">Desired Username*</p>
        <p class = "registerDesc">Between 1 and 20 characters long</p>                  
        <input type = "text" name = "username" class = "register">
        <p class = "register">Desired Password*</p>
        <p class = "registerDesc">We won't force securty onto you; between 6 and 255 characters long. No other criteria.</p>
        <input type = "password" name = "password" class = "register">
        <p class = "register">Confirm Password*</p>
        <input type = "password" name = "confirmPassword" class = "register">
        <p class = "register">Email Adress*</p>
        <input type = "text" name = "email" class = "registerEmail">
        <p class = "register">Bio</p>
        <p class = "registerDesc">Extra information such as hobbies, occupation, background information. Maximum 4096 characters. We can do this later.</p>
        <textarea name = "bio" class = "registerBio"></textarea>
        <p><input type = "submit" class = "registerButton" value = "Register"></p>
    </form>
    </body>
    </html>
    

    Submitting an emtpy form alerts:

    Sorry, your username must be between 1 and 20 characters long.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误