在页面上加载我通过查找错误类来聚焦输入,它在桌面和Android中工作正常,但在iPhone中却不行。如果有人经历过这个问题你们可以提出建议。
谢谢!
JS:
(function($) {
$(function(){
$('.form-field-container').find('input.error').each(function (i,e) {
if ( $(this).hasClass('error') == true ) {
if(i==0){
$(this).focus(function(e) {
setTimeout(function() {
$(this).trigger('click');
$(this).click();
}, 200);
})
}
} else { }
})
});
})(jQuery);