我正在制作一个漂亮的登录系统,所以我想在表单中输入内容时更改文本的颜色,但我无法弄清楚如何,我为他们分配了一个类来使其工作,但它似乎不起作用.
HTML:-
<div class="Login">
<form name="form1" method="get" action="index.php">
<input type="text" value="Username" name="Username" onblur="if (this.value === '') {this.value = 'Username'; this.class='Offline';}" onfocus="if (this.value === 'Username') {this.value = ''; this.class='Online';}">
<input type="text" value="Password" name="Password" onblur="if (this.value === '') {this.value = 'Password';}" onfocus="if (this.value === 'Password') {this.value = '';}">
<input type= "Submit" Name= "Submit" value= "Login" class="Button">
</form>
</div>
我在这些类上更改 CSS 中的颜色。但它似乎不起作用,任何人都可以在这里指导我,我没有很多 javascript 脚本经验,所以我不想去那一边