1
可能重複:
how to auto refresh MVC PartialView every second如何刷新MVC partilal鑑於30秒後
我想刷新MVC局部視圖每30秒。我怎樣才能更新只有很多部分不是整個頁面?
可能重複:
how to auto refresh MVC PartialView every second如何刷新MVC partilal鑑於30秒後
我想刷新MVC局部視圖每30秒。我怎樣才能更新只有很多部分不是整個頁面?
你可以嘗試在你的頁面中使用setTimeout javascript定時器,並給它ajax函數,它會爲你加載部分。這是超時函數原型:
<script type='text/javascrit'>
function loadPartial()
{
//your ajax call
}
$(document).ready(function() {
setTimeout("loadPartial",30000);
});
</script>
請看http://stackoverflow.com/questions/1508765/how-to-auto-refresh-mvc-partialview-every-second – Adrian