// 解决 H5 IOS input 聚焦时,页面整个被推上去了,键盘收起页面未下移 BUG
(function () {
	(/iphone|ipod|ipad/i.test(navigator.userAgent)) && document.addEventListener('blur', event => {
		// 当页面没出现滚动条时才执行,因为有滚动条时,不会出现这问题
	    // input textarea 标签才执行,因为 a 等标签也会触发 blur 事件
	    if (
	        document.documentElement.offsetHeight <=
	        document.documentElement.clientHeight &&
	        ['input', 'textarea'].includes(event.target.localName)
	    ) {
	        document.body.scrollIntoView() // 回顶部
	    }
	}, true);
})();
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐