jquery验证器组 - 如何使用它?

时间:2012-06-17 09:24:35

标签: jquery jquery-validate

我有3个字段和按钮:

<input type="text" id="a" />
<input type="text" id="b" />
<input type="text" id="c" />
<input type="button" id="d" />
<label for="all_fields" class="error" style="display:none;">Please fill exactly one field</label>

我想使用jquery验证器插件来验证一个字段是否填充了文本。最好的方法是什么?

3 个答案:

答案 0 :(得分:3)

工作演示 for A / B / C案例:http://jsfiddle.net/hfLwB/

行为:只要其中一个输入字段设置为nu,其值将允许计算发生,如果所有3个字段都为空,则会出现错误。您还会注意到课程.at_least_one addMthod:require_from_group

Anyhoo代码应该说得更好。

良好的链接:http://docs.jquery.com/Plugins/Validation

希望有所帮助:)

<强> HTML

<form action="results.whatever" target="_blank" id="HULK">

    <div style="clear:both">
    <label for="a">A</label>
    <div style="float:right">
            <input name="a" type="text" class="at_least_one idleField"></div>
    </div>
    <div style="clear:both">
        <label for="b">B</label>
        <div style="float:right">
            <input name="b" type="text" class="at_least_one idleField">
        </div>
    </div>
    <div style="clear:both">
        <label for="c">C</label>
        <div style="float:right">
            <input name="c" type="text" class="at_least_one idleField">
        </div>
    </div>
    <div id="button">
        <input name="" type="submit" value="Calculate" class="calc_button" style="cursor:hand">
    </div>
    </form>
<div id="errorContainer">
    <h4>errors</h4>
    <ol>
    </ol>
</div>
​

<强>代码

   jQuery.validator.addMethod("require_from_group", function(value, element, options) {
  var numberRequired = options[0];
  var selector = options[1];
  var fields = $(selector, element.form);
  var filled_fields = fields.filter(function() {
    // it's more clear to compare with empty string
    return $(this).val() != ""; 
  });
  var empty_fields = fields.not(filled_fields);
  // we will mark only first empty field as invalid
  if (filled_fields.length < numberRequired && empty_fields[0] == element) {
    return false;
  }
  return true;
// {0} below is the 0th item in the options field
}, jQuery.format("Please fill out at least {0} of these fields."));

$(document).ready(function(){
  var container = $('#errorContainer');
  $("#HULK").validate(  {

    // We must to force validation of entire form because
    // when we remove value from 2-nd field 
    // the 1-st field becomes invalid.
    onfocusout: function() { $("#HULK").valid() },
    onkeyup: function() { $("#HULK").valid() },

    rules: {
      // note: you can use variable to avoid repeating 
      // of the same code
      a: { 
        number: true,
        require_from_group: [1, ".at_least_one"]
      },
      b: {
        number: true,
        require_from_group: [1,".at_least_one"]
      },
      c: {
        number: true,
        require_from_group: [1,".at_least_one"]
      }
    },
    success: function(label) {  
      label.html(" ").addClass("checked"); 
    },
    errorContainer: container,
    errorLabelContainer: $("ol", container),
    wrapper: 'li',
    meta: "validate"
  });
});
​

答案 1 :(得分:3)

只需在@Tats_innit帖子中添加更多道具。

github上的require_from_group {1}}的{​​{1}} 1.10.0发布版本存在未解决的问题。

github问题: require_from_group disables other rules

smileyanp @ github在他的解决方案中引用了这篇文章,他重新使用了@ Tats_innit的函数并创建了一个test,显示它正常工作并且不会禁用验证之前定义的其他规则additional-method-1.10.js

这篇帖子可以节省时间,因为这会花费3小时的谷歌搜索这么小的细节。

<强> FIX:

只需更新jquery.validation或在加载require_from_group后执行此代码(覆盖该功能)。

additional-method-1.10.js

答案 2 :(得分:-1)

我试图使用require_from_group作为magento网站但却无法使其工作,即使使用此修复程序也是如此。在浪费了太多时间之后,我使用其html中的title属性将其缩小为magento。然后我遇到了这个jquery validation , when input field has a title attribute , instead of error message title is given as the error message

我希望这有助于他人节省时间!!