0

我有很多形式为

我有这个 HTML

<form method="post"  id="form_commento-[i]" class="form_fancybox_commenti">
    <div class="form-section">
        <span style="position: relative">
            <input type="text" id="commento_form_[i]_commento" name="commento_form_[i][commento]" required="required"/>
            <button type="submit" class="submit-button" id="submit_form_commenti">Commenta</button>
        </span>
    </div>
</form>

其中 [i] 是索引

在我准备好的文件中,我有

$(document).ready(function() {

    jQuery.validator.addMethod("alphanumeric", function (value, element) {
        return this.optional(element) || /^[a-zA-Z0-9\n\-'àèìòù: <_,. !?()]*$/.test(value);
    },   "error");

    $('.form_fancybox_commenti').each(function(index, numero_form) {

    var theRules = {};

    theRules[
        'commento_form_['+index+'][commento]'] = {alphanumeric: true};


    $(this).validate({
        rules: theRules,
        submitHandler: function(form) {
            save(form);
        }
    });
});

但我的自定义规则不起作用。

无论如何要解决这个问题?

4

2 回答 2

1

如果nameis commento_form_[i][commento],那么你在这里缺少一组括号......

'commento_form_'+index+'[commento]'

=>

'commento_form_['+index+'][commento]'

但是,此时您尚未定义index,因此此方法失败并出现 JavaScript 控制台错误。


有一个非常简单的替代 JavaScript 块。添加class="alphanumeric"到您的<input>元素中,您的代码将简化为:

$(document).ready(function () {

    jQuery.validator.addMethod("alphanumeric", function (value, element) {
        return this.optional(element) || /^[a-zA-Z0-9\n\-'àèìòù: <_,. !?()]*$/.test(value);
    }, "error");

    $('.form_fancybox_commenti').each(function (index, numero_form) {
        $(this).validate({
            submitHandler: function (form) {
                save(form);
                // alert('save form: ' + index); // for demo
                return false; // blocks default form action
            }
        });
    });

});

演示:http: //jsfiddle.net/XTtTP/


如果您更愿意使用 JavaScript 来分配您的规则,您也可以使用jQuery中.rules('add')方法.each(),如下所示,并且不需要索引:

$('input[name^="commento_form_"]').each(function () {
    $(this).rules('add', {
        alphanumeric: true
    });
});

演示:http: //jsfiddle.net/T776Z/


顺便说一句,文件alphanumeric中已经有一个方法被调用。见:http: //jsfiddle.net/h45Da/additional-methods.js

于 2013-09-27T14:28:12.627 回答
0

这是我找到的最佳解决方案,我目前在我的项目中使用:

        // Adding rule to each item in commento_form_i list 
        jQuery('[id^=commento_form_]').each(function(e) {
        jQuery(this).rules('add', {
            minlength: 2,
            required: true
            })
        });
于 2017-05-16T07:16:31.260 回答