我需要擦除或清空表单的输入字段我使用此但不起作用:
<script>
jQuery(document).ready(function()
{
jQuery("#contact_form").get(0).reset()
});
</script>
<form id="contact_form" name="form" method="post" action="">
<input name="c_name" type="text" title="Insert Personal Name" value="Personal Name" />
</form>
脚本必须删除输入文本的内容,不显示文本个人姓名,案例不起作用,不重置表单
我不知道是否存在某些错误,但我认为必须有效
谢谢,问候