这是我的代码.我不明白为什么占位符没有显示在资源管理器中.请帮忙.
<form method="post" > <input type="text" class="field" name="nom" placeholder="Votre Nom"> <input type="text" class="field" name="telephone" placeholder="Téléphone"> <center><input type="submit" id="submit_btn" value="Valider" class="btn_submit"></center> </form>
解决方法
尝试使用OnFocus,而不是使用占位符,它将起作用
<input name="nom" type="text" value="Votre Nom" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;">
让我知道它是否有效