jQuery验证字段自动填充另一个,删除错误而不单击字段

时间:2015-02-24 19:08:15

标签: jquery jquery-validate

我有自动填写其他文本框的字段,例如,如果选择了一个名为Gift的下拉列表,它会填充一个文本框,其中的值与Gift相同。

我在理解上遇到的麻烦是jQuery的验证。如果文本框为空并且您单击提交它将告诉您此字段是必需的并且css是红色的(我设置为错误)但是当您选择下拉值礼物并且它预填充文本框时它不会删除错误直到您单击文本框或选项卡。

有没有人遇到过这个问题,或者发现了自动填充其他字段的字段的解决方案?

修改

我也有这个地理定位,在输入时自动填写地址,执行相同的操作。我想弄清楚我可以在哪里添加.valid(),这样一旦选择了一个地址并且预先填充了city,state和zip,那么它也将删除错误css。

var placeSearch, autocomplete;
var componentForm = {
  route: 'long_name',
  locality: 'long_name',
  administrative_area_level_1: 'short_name',
  postal_code: 'short_name'
};

function initialize() {
  // Create the autocomplete object, restricting the search
  // to geographical location types.
  autocomplete = new google.maps.places.Autocomplete(
    /** @type {HTMLInputElement} */
    (document.getElementById('autocomplete')), {
      types: ['geocode']
    });
  // When the user selects an address from the dropdown,
  // populate the address fields in the form.
  google.maps.event.addListener(autocomplete, 'place_changed', function() {
    fillInAddress();
  });
}

// [START region_fillform]
function fillInAddress() {
  // Get the place details from the autocomplete object.
  var place = autocomplete.getPlace();

  for (var component in componentForm) {
    document.getElementById(component).value = '';
    document.getElementById(component).disabled = false;
  }

  // Get each component of the address from the place details
  // and fill the corresponding field on the form.
  for (var i = 0; i < place.address_components.length; i++) {
    var addressType = place.address_components[i].types[0];
    if (componentForm[addressType]) {
      var val = place.address_components[i][componentForm[addressType]];
      document.getElementById(addressType).value = val;
    }
  }
  //var keys=[];for (var key in place.address_components[0]) keys.push(key);
  //alert(keys):
  document.getElementById('autocomplete').value = 
    place.address_components[0]['long_name'] + ' ' +
    place.address_components[1]['long_name'];

  /*document.getElementById('route').value = (document.getElementById('chbSame').checked ? document.getElementById('autocomplete').value : '');*/
  document.getElementById('route').value = '';
}
  // [END region_fillform]

// [START region_geolocation]
// Bias the autocomplete object to the user's geographical location,
// as supplied by the browser's 'navigator.geolocation' object.
function geolocate() {
  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(function(position) {
      var geolocation = new google.maps.LatLng(
        position.coords.latitude, position.coords.longitude);
      var circle = new google.maps.Circle({
        center: geolocation,
        radius: position.coords.accuracy
      });
      autocomplete.setBounds(circle.getBounds());
    });
  }
}

  // [END region_geolocation]
initialize();

http://jsfiddle.net/bobrierton/89nqv5v5/

1 个答案:

答案 0 :(得分:3)

jQuery Validate插件的数据验证测试通常仅由标签/点击(onfocusout),打字(onkeyup)等普通用户事件触发。

如果您以编程方式填写字段,则必须以编程方式触发验证测试。

在您用于填写字段的任何代码中,将the .valid() method附加到您要验证的字段。

否则,只要字段本身的值发生变化,您就可以触发它......

$('#myField').on('change', function() {
    $(this).valid();
});

或者当选择的值发生变化时......

$('#mySelect').on('change', function() {
    $('#myField').valid();
});

但是,我不明白为什么您需要验证用户无法直接填写的字段。由于您以编程方式控制数据,因此总是有效。