HTML5 ベースのアプリがあり、メール ID とパスワードを入力するために 2 つの入力タグを使用しています。メール ID とパスワードにも 2 つのラベルを使用しています。ページが読み込まれると、これらのテキスト ボックス内にテキストは表示されませんが、ユーザーがいずれかのテキスト ボックスにテキストを入力しようとしてカーソルをテキスト ボックス内に移動すると、対応するラベル テキストが表示されます。どうすればこれを削除できますか。
この問題は Android のみで発生し、iOS では発生しません。
<label for="username" id="EmailAddress"></label>
<input type="text" class="ui-input-text ui-body-a ui-corner-all ui-shadow-inset error" 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" class="ui-input-text ui-body-a ui-corner-all ui-shadow-inset error" title="" name="password" id="password" value="" style="-moz-appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;" />
ありがとう