【发布时间】:2013-07-18 22:08:29
【问题描述】:
我在 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);
}
});
【问题讨论】:
标签: jquery ajax asp.net-mvc html asp.net-mvc-4