1
我用textarea創建了一個簡單的hello world類型的Phonegap應用程序。 textarea是14行×40列。下面是index.html頁面的標記:iPhone7上的Phonegap輸入控件崩潰應用程序
<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,在做textarea的一個空白「downHold」時,PhoneGap的應用程序會崩潰。 100%的時間。
輸入控件不一定是textarea。我使用文本框體驗過同樣的事情。
此行爲發生在我測試過的3個iphone 7s上。它不會在Iphone 5,Iphone 5SE,Iphone 6,Iphone 6S或Ipad Mini上發生。
有沒有其他人經歷過這個?