考虑 ASP MVC 应用程序中的以下 JS 代码
function AddRecipient() {
$.ajax({
url: "/Recipient/Add/@Model.Email.Id",
cache: false,
success: function (html) { $("#RecipientsTable tr:last").after(html); }
});
};
表单验证器不会验证新表行中新添加的字段。我相信我需要将这些字段添加到表单验证器中。
知道怎么做吗?
提前致谢!