我想在表中加载数据,但我想在页面加载后执行此操作。实际页面有一个表,一个文本框和一个搜索按钮。我以为ajax会有所帮助,但是我还没有找到解决我问题的好的方法。我该怎么做呢? Javascript,Jquery或其他方式。
<table class="roundAll" >
<tr class="titleRow">
<th colspan="2">New Entries</th>
</tr>
<%foreach(var item in Model.NewList) { %>
<tr>
<td><%=item.Date.ToShortDateString() %></td>
<td><%=Html.ActionLink(item.id,"Redirect/" + item.id)%></td>
</tr>
<% } %>
</table>
<br/>
<table>
<td><%= Html.TextBox("IdNum") %></td>
<td><input type="submit" name="Submit" value="Submit" /></td>
</table>
最佳答案
页面加载完成后,运行一个jquery脚本,它将使用ajax加载数据并将其与jQuery Templates绑定
关于javascript - 页面加载后如何加载数据表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3440551/