菜鸟教程小白 发表于 2022-12-12 17:59:43

jquery - Phonegap iOS iScroll 5 View 在虚拟键盘上向上移动


                                            <p><p>我正在使用 Phonegap、jQuery 和 iScroll 5 为 iOS 构建 native 应用程序。 iScroll 完美地工作,除了当我专注于页脚中的输入字段时。虚拟键盘出现并将整个 View 向上推。标题不在 View 中,我无法滚动到页面顶部。当输入字段失去焦点或模糊时,一切都会恢复正常。我读过 iScroll 没有检测到屏幕大小的变化,但我不知道如何修复它。我试过 window.scrollTo(0, 0) 和 scrollTop() 都没有运气。谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我为此苦苦挣扎了好几个星期。</p>

<p>试试</p>

<pre><code>body{
    overflow: hidden;
    position: fixed;
    top:0;
    min-height: 480px; /* Window height for iPhone 5*/
}
</code></pre>

<p>在xml中:</p>

<pre><code>&lt;preference name=&#34;HideKeyboardFormAccessoryBar&#34; value=&#34;true&#34; /&gt;
</code></pre>

<p>我更改了 CDVViewController.m</p>

<p>来自</p>

<pre><code>CGFloat actualKeyboardHeight = (keyboardFrame.size.height - accessoryHeight);
newFrame.size.height -= actualKeyboardHeight;
</code></pre>

<p>到</p>

<pre><code>newFrame.size.height -= 0;
</code></pre>

<p>现在这对我有用,只要我在一页上没有多个输入字段,我实际上需要一些滚动。</p></p>
                                   
                                                <p style="font-size: 20px;">关于jquery - Phonegap iOS iScroll 5View 在虚拟键盘上向上移动,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21010323/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21010323/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: jquery - Phonegap iOS iScroll 5 View 在虚拟键盘上向上移动