JQuery-Validation - using rules method on selected ID, why does the name attribute have to be present on the element?

StackOverflow https://stackoverflow.com/questions/14145283

문제

I'm a little confused about the JQuery validation plugin behavior.

If I have the following JQuery:

$('#form1').validate({
    /* other validation */
});

$('#txt1').rules("add",
{
    required: true,
    messages: { required: 'This is required!' }
});

and the following text input, with an id but no name attribute:

<input type="text" id="txt1"/>

No required message pops up on the text box.

However, if I add a name attribute:

<input type="text" id="txt1" name="anything"/>

It validates it just fine.

Why is that? Since I'm using the rules("add", rules) method on an ID selector, why does it need the name attribute present in order to associate rules to the element? Thanks for any insight!

도움이 되었습니까?

해결책

A name attribute is required on the element firstly because that's what jQuery validate uses internally as a key for each field, and secondly because the name attribute is required on input elements to ensure the page validates to the specified DOCTYPE.

다른 팁

If you want to apply the rules using the id then use like this,

$(function () {
  var $field = $("#id_field").attr("name");
  var $params = {debug:false, rules:{}, messages:{}};
  $params['rules'][$field] = {"required": true, "rule": ["params"]};
  $params['messages'][$field] = "error message";

  $("#frm").validate($params);
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top