-1

我对表单验证有疑问。为什么这个例子不起作用?

HTML

<form action="" method="post">
    <label>E-mail:</label>
    <input type="text" name="email" placeholder="Email" />
    <label>Password:</label>
    <input type="password" name="password" placeholder="Password" />
    <label>Repeat password:</label>
    <input type="password" name="repeat" placeholder="Password repeat" />
    <label></label>
    <input type="submit" name="submit" class="button" value="Create" />
</form>

jQuery

$(document).ready(function() {
    $('form').validate({
        rules:
        {
            email: { required: true }
        }
    });
});

小提琴

4

1 回答 1

3

您忘记为 jQuery 添加脚本/插件.validate()

在这里检查

我用了你的小提琴并添加了:http://jquery.bassistance.de/validate/jquery.validate.js

于 2013-07-06T11:06:07.067 回答