输入占位符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入占位符相关的知识,希望对你有一定的参考价值。
On focus, remove text inside input containing a title, put it back if it has not change
$(function(){ $("input[type*='text'][title]") .bind("focus",function(){ if(this.value==this.title){ this.value=""; } }) .bind("blur",function(){ if(this.value==""){ this.value=this.title; } }); });
以上是关于输入占位符的主要内容,如果未能解决你的问题,请参考以下文章