gpt4 book ai didi

javascript - 自动滚动以搜索输入字段并且不在移动设备上显示旧的搜索选项

转载 作者:行者123 更新时间:2023-11-28 03:25:38 26 4
gpt4 key购买 nike

所以我的网站上有一个搜索输入框。

 <input type="search" id="searchfield">

当我在移动设备(Chrome 浏览器)上单击它时,会出现键盘。所以我向上滚动以确保它可见。

$('input').on('focus', function () {
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
document.body.scrollTop = this.getBoundingClientRect().top - screen.height / 4;
}
});

但它可以在菜单中显示搜索字段的旧输入,并且向下滚动大约半页并将整个页面隐藏在它后面。

It looks like this

我希望你能帮助我。 :)

最佳答案

您只需关闭 autocomplete attribute .

<input type="search" id="searchfield" autocomplete="off"/>

关于javascript - 自动滚动以搜索输入字段并且不在移动设备上显示旧的搜索选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44990122/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com