jquery验证条件语句?

发布于 2024-12-12 09:47:07 字数 212 浏览 0 评论 0原文

我正在使用这个 jquery 插件: http://docs.jquery.com/Plugins/Validation

我想写一个条件语句。

如果用户将特定表单字段留空,则不需要该字段。 但是,如果他们不将其留空,则必须以数字开头

I am using this jquery plugin:
http://docs.jquery.com/Plugins/Validation

and I want to write a conditional statement.

If the user leaves a specific form field blank, then the field is not required.
However, if they don't leave it blank, then it must start with a number

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半城柳色半声笛 2024-12-19 09:47:07

对于“必须以数字开头”部分,我认为您需要一个自定义规则。

对于“如果另一个字段不为空则为必需”部分,您可以使用 依赖表达式 来决定验证器运行时是否需要:

将它们放在一起,您将得到如下所示的内容:

<form>
    <input name="first">
    <input name="second">
</form>
$.validator.addMethod("startsWithNum", function(input, element) {
    // First char must be digit if not empty
    return ! input || input.match(/^[0-9]/);
}, "This field must start with a number");

$('form').validate({
    rules: {
        first: {required : true},
        second: {
            "startsWithNum" : true,
            required: function() {
                // required if <input name="first"> is not empty
                return $('[name="first"]').val() !== '';
            }
        }
    }
});

演示:http://jsfiddle.net/qCELA/2/


我需要在表单中输入一个内容。如果用户将其留空,则不适用任何规则。否则,该单个输入字段必须以数字开头。

如果您只有一个输入字段,则自定义规则即可:

$('form').validate({
    rules: {
        second: {"startsWithNum" : true}
    }
});

演示:http://jsfiddle.net/ qCELA/3/

For the "must start with a number" part, I think you'll need a custom rule.

For the "required if another field is not empty" part, you can use a dependency expression to decide if it's required when the validator runs:

Put them together and you'll have something like this:

<form>
    <input name="first">
    <input name="second">
</form>
$.validator.addMethod("startsWithNum", function(input, element) {
    // First char must be digit if not empty
    return ! input || input.match(/^[0-9]/);
}, "This field must start with a number");

$('form').validate({
    rules: {
        first: {required : true},
        second: {
            "startsWithNum" : true,
            required: function() {
                // required if <input name="first"> is not empty
                return $('[name="first"]').val() !== '';
            }
        }
    }
});

Demo: http://jsfiddle.net/qCELA/2/


There is only a single input in the form I need to make. If the user left it blank, then no rules apply. Otherwise, that single input field must start with a number.

If you only have one input field, the custom rule is all you need:

$('form').validate({
    rules: {
        second: {"startsWithNum" : true}
    }
});

Demo: http://jsfiddle.net/qCELA/3/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文