我在 ASP.Net MVC4 中工作,在我看来,我有一个表,想从中加载该表,但在成功后不加载。
<div id="groupTable"> <table> table columns and rows <table></div>
$.ajax({
type: "POST",
url: url,
dataType: "json",
data: { groupNames: JSON.stringify(groubyNames), page: JSON.stringify(page) },
success: function(data) {
$('#groupTable').load(data); // not refreshing table withdata
},
error: function(request, status, error) {
alert(request.responseText);
}
});