使用以下链接中的数据表.. https://datatables.net/。
第一次加载视图时,我在ASP MVC5项目中使用模型数据加载/绘制表。
<table id="example" class="display" style="min-width: 100%">
<thead>
<tr>
<th>Item</th>
<th>ItemDesc</th>
<th>UM</th>
<th>Qty</th>
<th>Category</th>
<th>Comment</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>item.Item</td>
<td>item.ItemDesc</td>
<td>item.UM</td>
<td>item.Qty</th>
<td>item.Category</td>
<td>item.Comment</td>
<td>item.Delete</td>
</tr>
}
我使用模态弹出窗口编辑屏幕上的数据并保存到db.A关闭pop后我需要用ajax-json数据刷新数据表。如何在不重新加载页面的情况下刷新现有表? 我做了一些关于跟随的工作;但没有任何帮助 - https://datatables.net/reference/api/ajax.url().load() https://datatables.net/reference/api/ajax.url()