$(window).resize(function(){ $('input[type="text"],textarea').on('click', function () { var target = this; setTimeout(function(){ target.scrollIntoViewIfNeeded(); // console.log('scrollIntoViewIfNeeded'); },400); }); });
本文共 392 字,大约阅读时间需要 1 分钟。
$(window).resize(function(){ $('input[type="text"],textarea').on('click', function () { var target = this; setTimeout(function(){ target.scrollIntoViewIfNeeded(); // console.log('scrollIntoViewIfNeeded'); },400); }); });
转载于:https://www.cnblogs.com/cx709452428/p/10225592.html