Phonegap输入控件在iphone7上崩溃应用程序

时间:2017-09-15 12:37:52

标签: html ios iphone phonegap

我用textarea创建了一个简单的hello world类型的Phonegap应用程序。 textarea是14行乘40列。这是index.html页面的标记:

<body>
<div class="app">
    <textarea rows="14" cols="40">
        This is some generic test inside the textarea.
    </textarea>     
    <div id="deviceready" class="blink">
        <p class="event listening">Connecting to Device</p>
        <p class="event received">Device is Ready</p>
    </div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
    app.initialize();
</script>
</body>

在iphone 7上运行时,执行&#34; downHold&#34;在textarea的空白区域,Phonegap应用程序将崩溃。 100%的时间。

输入控件不必是textarea。我使用文本框经历了同样的事情。

在我测试过的3部iphone 7上会出现此问题。它不会发生在Iphone 5,Iphone 5SE,Iphone 6,Iphone 6S或Ipad Mini上。

还有其他人经历过这个吗?

1 个答案:

答案 0 :(得分:0)

在iphone 7上禁用“3D Touch”可以解决此问题。