html – 占位符值未显示在chrome中?

前端之家收集整理的这篇文章主要介绍了html – 占位符值未显示在chrome中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的代码.我不明白为什么占位符没有显示在资源管理器中.请帮忙.

HTML代码

<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;">

让我知道它是否有效

原文链接:https://www.f2er.com/html/223988.html

猜你在找的HTML相关文章