一:获取焦点时 提示字消失
<input type="text" name="textfield" value="这里是提示内容" onclick="if(value==defaultValue){value='';this.style.color='#000'}" onBlur="if(!value){value=defaultValue;this.style.color='#999'}" />
 
二:修改文字时 提示字消失(但是placeholder有兼容性的问题)
<input class="text" type="email" name="email" spellcheck="false" placeholder="邮 箱" autofocus >
<input class="text" type="password" name="password" placeholder="密 码" >
<input class="button" type="submit" value="登 录" >

相关文章:

  • 2021-12-19
  • 2021-12-15
  • 2022-01-19
  • 2021-12-15
  • 2022-12-23
  • 2022-12-23
  • 2021-11-10
猜你喜欢
  • 2021-12-04
  • 2022-12-23
  • 2022-02-26
  • 2021-11-06
  • 2021-12-15
  • 2021-12-15
  • 2022-12-23
相关资源
相似解决方案