jQuery 验证字段自动填充另一个,无需单击字段即可删除错误
jQuery Validation Field AutoFills Another, Removing Error without clicking field
我有自动填充其他文本框的字段,例如,如果选择了一个显示“礼物”的下拉菜单,它会填充一个具有相同值“礼物”的文本框。
我难以理解的是 jQuery 的验证。如果文本框是空的并且你点击提交它会告诉你这个字段是必需的并且 css 是红色的(我设置错误)但是当你然后 select 下拉值礼物并且它预填文本框它不会删除错误,直到您单击文本框或选项卡通过它。
有没有人遇到过这个问题或发现了自动填充其他字段的字段的解决方案?
编辑
我也有这个地理定位,在输入时自动填写地址,做同样的事情。我想弄清楚我可以在哪里添加 .valid() 以便一旦选择了地址并预先填充了城市、州和邮编,那么它也会删除错误 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();
jQuery Validate 插件的数据验证测试通常仅由普通用户事件触发,如 tabbing/clicking (onfocusout
)、键入 (onkeyup
) 等
如果您以编程方式填写字段,则必须以编程方式触发验证测试。
在您用来填写字段的任何代码中,将 the .valid()
method 附加到您要验证的字段。
否则,您可以在字段本身的值发生变化时触发它...
$('#myField').on('change', function() {
$(this).valid();
});
或者当 select 的值改变时...
$('#mySelect').on('change', function() {
$('#myField').valid();
});
但是,我不明白为什么您需要验证用户无法直接填写的字段。由于您以编程方式控制数据,因此它应该始终有效。
我有自动填充其他文本框的字段,例如,如果选择了一个显示“礼物”的下拉菜单,它会填充一个具有相同值“礼物”的文本框。
我难以理解的是 jQuery 的验证。如果文本框是空的并且你点击提交它会告诉你这个字段是必需的并且 css 是红色的(我设置错误)但是当你然后 select 下拉值礼物并且它预填文本框它不会删除错误,直到您单击文本框或选项卡通过它。
有没有人遇到过这个问题或发现了自动填充其他字段的字段的解决方案?
编辑
我也有这个地理定位,在输入时自动填写地址,做同样的事情。我想弄清楚我可以在哪里添加 .valid() 以便一旦选择了地址并预先填充了城市、州和邮编,那么它也会删除错误 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();
jQuery Validate 插件的数据验证测试通常仅由普通用户事件触发,如 tabbing/clicking (onfocusout
)、键入 (onkeyup
) 等
如果您以编程方式填写字段,则必须以编程方式触发验证测试。
在您用来填写字段的任何代码中,将 the .valid()
method 附加到您要验证的字段。
否则,您可以在字段本身的值发生变化时触发它...
$('#myField').on('change', function() {
$(this).valid();
});
或者当 select 的值改变时...
$('#mySelect').on('change', function() {
$('#myField').valid();
});
但是,我不明白为什么您需要验证用户无法直接填写的字段。由于您以编程方式控制数据,因此它应该始终有效。