我在使用 Javascript/jQuery 清除表单时遇到问题
这是我的表单的定义方式-所有标签都已关闭,它们应该按应有的顺序排列
<form id="eventpostform" name="eventpostform" method="post" action="post">
<table cellspacing="5px" style="margin-top: 10px;" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="180px">Event Name:</td>
<td width="210px"><a class="param_submit" style="width:86px;padding:6px 5px;margin-left:16px;" alt="" onclick="clearform();">Clear Form</a></td>
我尝试了以下但没有运气:
$('#eventpostform').clearForm();
$('#eventpostform').resetForm();
$('#eventpostform').reset();
document.getElementById("eventpostform").reset();
前 2 个什么都不做,其他两个显示错误"Uncaught TypeError: Cannot call method 'reset' of null"