单击时清除默认文本字段值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单击时清除默认文本字段值相关的知识,希望对你有一定的参考价值。
No need to create a seperate function for this one. Just one line to clear the default value on click and leave the value when it has been altered.
<input name="email_address" value="Email address" onfocus="if($(this).val() == 'Email address') { $(this).val('')}" type="text">
以上是关于单击时清除默认文本字段值的主要内容,如果未能解决你的问题,请参考以下文章