我使用html和asp.net创建了一个登录控件,如下所示
<div id="login_Background" style="width:100%;position:absolute;top:0px;bottom:0px;left:0px;right:0px;background-color:#000;z-index:1000;LEFT:27%;">
<div id="loginModal" class="container" >
<h3>
Login</h3>
<div>
<label id="login_warning" runat="server"></label>
<input id="login_txtUsername" runat="server" type="text" placeholder="Username" />
<input id="login_txtPassword" runat="server" type="password" placeholder="Password" />
<asp:Button ID="Button1" runat="server" Text="Enter" CssClass="button_login" OnClick="login_btnLogin_Click" />
</div>
</div>
</div>
我面临的问题是我无法在ipad的safari或ipad的google chrome中输入文本框中的任何内容,即使键盘未显示在ipad中。我在我的Windows PC中使用谷歌浏览器检查了这一点,它工作正常。解决此问题的任何想法