ios onsenui光标弹出文本字段

时间:2015-09-15 00:09:17

标签: ios cordova onsen-ui

我使用cordova和onsenui为一些公式编写了一个小型计算器应用程序。这个应用程序在Android和iphone上工作正常,但是当我在ipad上使用它时,闪烁的光标不断弹出文本字段,就像在我发布的图片,光标应该是黄色的Liters文本字段,但它会弹出它。以下是viewform的代码

<table border="0" cellpadding="0">
    <tr style="height: 28px;">
        <td style="padding-right: 8px;">Litres:</td>
        <td align="center" style="background-color: #92D050; color: #000000;"><b>{{litres | setDecimal:3}}</b></td>
        <td><b>&nbsp;Required</b></td>
    </tr>
    <tr>
        <td style="padding-right: 8px;">Bag Size:</td>
        <td><ons-text-input ng-model="bagsize" placeholder="0" ng-change="doCalc()" type="number" pattern="[0-9]*" inputmode="numeric" min="0" style="width: 80px; background-color: #FFFF00; color: #000000"></ons-text-input></td>
        <td><b>&nbsp;Litres</b></td>
    </tr>
    <tr style="height: 28px;">
        <td style="padding-right: 8px;">No of Bags Required:</td>
        <td align="center" style="background-color: #92D050; color: #000000;"><b>{{totalbags | setDecimal:3}}</b></td>
        <td><b>&nbsp;</b></td>
    </tr>
</table>

enter image description here

有人可以告诉我为什么它只发生在ipad,我该如何解决这个问题呢?

0 个答案:

没有答案