gpt4 book ai didi

ios - JQuery-mobile、Phonegap、iOS、离开输入表单后固定标题跳转

转载 作者:可可西里 更新时间:2023-11-01 04:46:59 26 4
gpt4 key购买 nike

我在 iOS 上使用 Phonegap 和 JQuery-mobile,Phonegap。我在离开表单输入时遇到标题跳到中间的问题。

我已经在固定页眉和页脚上设置了 data-hide-during-focus="true"。这个问题快要死了。

最佳答案

如果我们只有一个标题栏,那么我们可以只遵循主标题栏的代码。

    $(document).on('focus', 'select, input, textarea', function () {
$('#main-headerbar').css({'position': 'absolute', 'top': '0px' });
});
$(document).on('blur', 'select, input, textarea', function () {
$('#main-headerbar').css({ 'position': 'fixed' });
});

如果我们有两个标题栏,第二个标题栏将显示在主标题栏下方(如果主标题栏的高度为“47px”,则为第二个标题栏设置顶部样式,顶部:47px)。

$(document).on('focus', 'select, input, textarea', function () {
$('#main-headerbar').css({'position': 'absolute', 'top': '0px' });
$('#Second-headerbar').css({ 'position': 'absolute', 'top' : '0px' });
});
$(document).on('blur', 'select, input, textarea', function () {
$('#main-headerbar').css({ 'position': 'fixed' });
$('#Second-headerbar').css({ 'position': 'fixed', 'top': '47px' });
});

或关注iOS fix for position fixed elements on input

关于ios - JQuery-mobile、Phonegap、iOS、离开输入表单后固定标题跳转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18704720/

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