我的 html 表单中有一个下拉框。我希望从下拉列表中选择“0”时,应重置表单,否则进行 ajax 调用以填写表单。我为此目的编写了以下代码,但它不起作用,我的意思是表单字段没有被重置。
$("select#student_id").change(function(){
var student = $(this).val;
if(student!=0)
{
//Here I make the ajax call to populate the form
}
在这里我如何重置表单字段。