我创建了一个包含提交和重置按钮的表单。在表单提交之前,重置按钮工作正常。提交表单后,我的视图包含一些预先填充的值。提交表单后,如果它有任何错误消息,它会使用 ModelState.AddError() 方法显示。现在,如果我点击重置按钮,值不会被清除。
我尝试使用 JQuery 之类的
$("#reset_button").click(function() {
$("#InterviewerName").val("");
$("#ContactName").val("");
});
但它不起作用。有任何想法吗?
这是表单中的我的按钮
<input type="submit" id="submit" value="submit" style="height:30px; width:85px; border:none; text-align:center; background-color:#06266F;cursor:pointer;color:white" />
@Html.Raw(" ")
<input type ="reset" id ="reset_button", value ="Reset" style="height:30px; width:85px; text-align:center; border:none; background-color:#06266F;cursor:pointer;color:white"/>