隐藏表单值-jQuery
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏表单值-jQuery相关的知识,希望对你有一定的参考价值。
$("#email") .val("Enter Your Email Here") .css("color", "#000") .focus(function(){ $(this).css("color", "#c1403e"); if ($(this).val() == "Enter Your Email Here") { $(this).val(""); } }) .blur(function(){ $(this).css("color", "#000"); if ($(this).val() == "") { $(this).val("Enter Your Email Here"); } });
以上是关于隐藏表单值-jQuery的主要内容,如果未能解决你的问题,请参考以下文章