1

我在使用 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"

4

2 回答 2

0

您可以在表单对象上使用重置方法而不是表单中的控件来清除。您将不得不清除单个 html 元素但他们的方法,例如清除文本框,您可以将其值设置为''或某个值。

重置表单中的所有控件

document.getElementById("eventpostform").reset();

清除个人控制

document.getElementById("textboxId").value = '';

使用 jQuery

$('#id').val('');
于 2013-04-09T15:52:08.573 回答
0

试试这个:

$('#eventpostform')[0].reset();
于 2013-04-09T15:53:00.263 回答