在这一点上,我束手无策......我无法让文本插入符号出现在表单的输入区域内。这是一个基于 phonegap 的应用程序,至少可以说非常简单。通过 css onfocus 我可以在文本框周围放置一个黄色突出显示..所以很明显我得到了焦点。
这是表单的样子:
<form method = "post" autocomplete="off" action="portal.html" style = "top:20%; width:250px; position:absolute; left:480px; right:auto; margin-top:0px; margin-bottom:0px;">
<label>Username:</label>
<input type="text" name="username" maxlength="40" style = "font-size: 20px;"/>
<label>Password:</label>
<input type="password" name="password" maxlength="40" style = "font-size: 20px;"/>
<input type="submit" class="submit" style = "left:20px; position:relative; cursor:auto;"/>
</form>