Authored by ccbikai

地址管理提交时输入框不 focus

... ... @@ -104,12 +104,14 @@ $addressForm.on('submit', function() {
// 简单的表单校验
if (!$(this).find('[name="consignee"]').val()) {
tip.show('收件人不能为空');
$(this).find('[name="consignee"]').focus();
// $(this).find('[name="consignee"]').focus();
return false;
}
if (!$(this).find('[name="mobile"]').val()) {
tip.show('手机号不能为空');
$(this).find('[name="mobile"]').focus();
// $(this).find('[name="mobile"]').focus();
return false;
}
if (!$(this).find('[name="area_code"]').val() || !$(this).find('[name="area"]').val()) {
... ... @@ -118,7 +120,8 @@ $addressForm.on('submit', function() {
}
if (!$(this).find('[name="address"]').val()) {
tip.show('地址不能为空');
$(this).find('[name="address"]').focus();
// $(this).find('[name="address"]').focus();
return false;
}
... ...