输入占位符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入占位符相关的知识,希望对你有一定的参考价值。

On focus, remove text inside input containing a title, put it back if it has not change
  1. $(function(){
  2. $("input[type*='text'][title]")
  3. .bind("focus",function(){ if(this.value==this.title){ this.value=""; } })
  4. .bind("blur",function(){ if(this.value==""){ this.value=this.title; } });
  5. });

以上是关于输入占位符的主要内容,如果未能解决你的问题,请参考以下文章

将张量流数据输入占位符张量流

如何更改输入标签占位符的语言?

谷歌翻译,输入类型='文本'中的占位符文本

如何在输入中仅使用占位符斜体

在占位符文本之前使用图标搜索输入 - Material Design

如何将占位符属性添加到 JSF 输入组件?