javascript - Jquery Validate Max Method With a Dynamic Value? - Stack Overflow

I tried the script of .. with examples of static values. how to use the max value but dynamic? I trie

I tried the script of /.. with examples of static values. how to use the max value but dynamic? I tried with this script but it did not work

jQuery.validator.setDefaults({
  debug: true,
  success: "valid"
});
$( "#myform" ).validate({
  rules: {
    field: {
      required: true,
      max: "#field1" //from field1 dynamic value???
    //max: 23 //static value
    }
  }
});
<script src=".11.1.min.js"></script>
<script src=".validate.min.js"></script>
<script src=".min.js"></script>
<form id="myform">
    <lable>value1 : </lable>
    <input type="text" class="left" id="field1" name="field1"><br>
    <lable>no greater than value1 : </lable>
    <input type="text" class="left" id="field" name="field">
      <br/>
<input type="submit" value="Validate!">
</form>

I tried the script of http://jqueryvalidation/max-method/.. with examples of static values. how to use the max value but dynamic? I tried with this script but it did not work

jQuery.validator.setDefaults({
  debug: true,
  success: "valid"
});
$( "#myform" ).validate({
  rules: {
    field: {
      required: true,
      max: "#field1" //from field1 dynamic value???
    //max: 23 //static value
    }
  }
});
<script src="http://code.jquery./jquery-1.11.1.min.js"></script>
<script src="http://jqueryvalidation/files/dist/jquery.validate.min.js"></script>
<script src="http://jqueryvalidation/files/dist/additional-methods.min.js"></script>
<form id="myform">
    <lable>value1 : </lable>
    <input type="text" class="left" id="field1" name="field1"><br>
    <lable>no greater than value1 : </lable>
    <input type="text" class="left" id="field" name="field">
      <br/>
<input type="submit" value="Validate!">
</form>

how to work?

Share Improve this question asked Oct 1, 2015 at 8:49 WisnuWisnu 651 gold badge1 silver badge7 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 9

Return the value of the field using a function.

$( "#myform" ).validate({
    rules: {
        field: {
            required: true,
            max: function() {
                return parseInt($('#field1').val());
            }
        }
    }
});

Remember to enclose the value within parseInt or the number could be evaluated as a string.

Working DEMO: http://jsfiddle/dq7wf3qj/

set max as max: function(){ return $("#field1").val();}

jQuery.validator.setDefaults({
  debug: true,
  success: "valid"
});
$( "#myform" ).validate({
  rules: {
    field: {
      required: true,
    max: function(){ return $("#field1").val();}
    }
  }
});
<script src="http://code.jquery./jquery-1.11.1.min.js"></script>
<script src="http://jqueryvalidation/files/dist/jquery.validate.min.js"></script>
<script src="http://jqueryvalidation/files/dist/additional-methods.min.js"></script>
<form id="myform">
    <lable>value1 : </lable>
    <input type="text" class="left" id="field1" name="field1"><br>
    <lable>no greater than value1 : </lable>
    <input type="text" class="left" id="field" name="field">
      <br/>
<input type="submit" value="Validate!">
</form>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743627089a4480717.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信