1
我在我的科爾多瓦應用程序中有一個輸入字段。當我通過單擊它來關注輸入字段時,窗口調整大小功能在android上被調用。在iOS上一切正常。 調整大小會產生問題,因爲我有一個用epub.js呈現的文本,並且在單擊該文本字段時它會返回到當前章節的開頭。點擊輸入字段觸發器窗口調整大小android
如何防止調整大小?
我想這一點,但問題依然存在: Click on input field triggers window resize
HTML:
<form id="realPageInputForm" ng-submit="goToRealPage(inputPage)">
<input ng-model-options="{ getterSetter: true }"
id="realPageInput"
class="inputPage input-label"
type="number"
name="inputPage"
ng-model="inputPage"
placeholder="Enter page here">
</form>