我想到以下方法就是这个仪式
loop { setInterval(function() { <%Html.RenderPartial("partialview",Model);%> },1000 ); }
还是有更好的方式使用ajax的东西?
$.ajax({ url: '/MyController/PartialViewAction',type: "GET",success: function(result) { $("#partialContainer").html(result); } });