调用Ajax.页面加载完成后的ActionLink
本文关键字:ActionLink 加载 Ajax 调用 | 更新日期: 2023-09-27 18:00:17
我有Ajax。ActionLink在我的dahsboard视图中返回部分视图,如下所示:
@Ajax.ActionLink("2013", "chartAjax", "Dashboard", new { yearForChart = "2013" }, new AjaxOptions { UpdateTargetId = "chartAjax", HttpMethod = "GET"})
但它正在计算财务数据和数据计数。所以加载时间太长。我想称之为Ajax。ActionLink,在完成仪表板加载之后。当局部视图加载时,我可以显示加载条吗?
谢谢。
我只想使用jquery,类似
<script>
$(document).ready(function() {
$.ajax({
type:"GET",
url: "/Dashboard/chartAjax/2013"
}).success(function(responseData){
$('#chartAjax').html(responseData);
}
};
});
</script>