当您尝试注册并且将某些内容保留为空白/未填写时,您会收到错误消息。(来自 PHP)。已填写内容的输入字段会被记住(Smarty {if isset($smarty.post.registratie.naam)} value="{$smarty.post.registratie.naam}"{else}value="Naam:"{/if}
:)
问题:在注册尝试失败后,我输入字段的默认值最初是“Naam:”,“Voornaam:”,“Email:”已更改为用户输入的值。(例如“Frederik ")
示例:http ://www.pixsters.be/index.php?page=registratie
使用我的 Jquery 代码,我清除了有默认值的字段,尽管我不想清除用户填写的字段。
jQuery代码:
function clearField(e)
{
if($(this).val() == this.defaultValue)
{
$(this).val('');
}
}
function resetField(e)
{
if($(this).val() == '')
{
this.value = this.defaultValue;
}
}