我有一个基于 html5 的移动应用程序。在应用程序中,我有一个用于输入用户名和密码的表单。但是在 android 设备中,当我将光标移到文本框内时,会出现一些默认文本,如图所示。
如何删除此默认文本?
XML:
<label for="username"
id="EmailAddress">
</label>
<input type="text" name="username"
id="username" value=""
autocorrect="off"
autocapitalize="off"
autocomplete="off"
style="-moz-appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;" />
<label for="password"
id="Password">
</label>
<input type="password" title="" name="password"
id="password" value=""
style="-moz-appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;" />