我正在通过该代码动态加载视图中的部分视图:
$("#typeOfQuestion").load("/Form/TechnicalQuestionPartial");
$(".questionType").click(function () {
var UrlPass;
if ($(this).val() === "techinicalQuestion") {
UrlPass = "/Form/TechnicalQuestionPartial";
// $('#typeOfQuestion').load("/Form/TechnicalQuestionPartial");
} else if ($(this).val() === "suggestion") {
UrlPass = "/Form/SuggestionPartial";
// $('#typeOfQuestion').load("/Form/Suggestion");
}
$.ajax({
url: UrlPass,
success: function (data) {
$('#typeOfQuestion').html(data);
$('#typeOfQuestion').html($("#formTrim").html());
validateAjaxForm();
}
});
});
问题是部分视图加载在 html.beginform 中,部分视图的一些属性需要验证我正在使用 jquery 不显眼的验证但它不起作用我需要一个教程来看看它是如何完成的