我有很多形式为
创建我有这个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);
}
});
});
但我的自定义规则不起作用。
无论如何要解决这个问题?
答案 0 :(得分:1)
如果name
为commento_form_[i][commento]
,那么您在这里错过了一组括号......
'commento_form_'+index+'[commento]'
=&GT;
'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
}
});
});
});
DEMO:http://jsfiddle.net/XTtTP/
如果您更愿意使用JavaScript来分配规则,您还可以在jQuery .each()
中使用the .rules('add')
method,如下所示,并且不需要编制索引:
$('input[name^="commento_form_"]').each(function () {
$(this).rules('add', {
alphanumeric: true
});
});
DEMO:http://jsfiddle.net/T776Z/
顺便说一句,the additional-methods.js
file中已有一种名为alphanumeric
的方法。请参阅:http://jsfiddle.net/h45Da/
答案 1 :(得分: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
})
});