我有一个 jquery-mobile (1.3.1) + phonegap 应用程序,我在其中使用了一个弹出小部件(此应用程序适用于 Android-any vresion)。此弹出窗口用于登录(它有用户名、密码和“登录”按钮。每当我单击文本字段(用户名或密码)时,设备键盘就会出现,但它与弹出窗口重叠。因为在这种重叠中,用户看不到他们正在输入的内容,并且除非键盘被最小化,否则无法点击登录。这是我现在拥有的代码 - 我已经使用过“ data-position-to="window
”
<a href="#popupLogin" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-icon="check" data-theme="a" data-transition="pop">Done</a>
<div data-role="popup" id="popupMenu" data-theme="a" >
<div data-role="popup" id="popupLogin" data-overlay-theme="e" data-theme="a" class="ui-corner-all">
<form>
<div style="padding:10px 20px;" data-overlay-theme="b">
<h3>Please sign in</h3>
<label for="ppcOpremarks" class="ui-hidden-accessible">Remarks</label>
<textarea name="ppcOpremarks" id="ppcOpremarks" value="" placeholder="Remarks (if any)" data-theme="a" ></textarea>
<label for="un" class="ui-hidden-accessible">Username</label>
<input name="user" id="un" value="" placeholder="username" data-theme="a" type="text">
<label for="pw" class="ui-hidden-accessible">Password</label>
<input name="pass" id="pw" value="" placeholder="password" data-theme="a" type="password">
<a href="#menuPage">
<button type="submit" data-theme="a" data-icon="check" id="ppCheckDone" onClick="updateppc()">Sign-In</button>
</a> </div>
</form>
</div>
</div>
如何使我的弹出窗口向上移动而不是与设备键盘重叠?