您可以使用Jquery尝试类似以下的 *** 作(虽然尚未测试)
<script type="text/javascript"> $(document).ready(function() { setInterval(function() { // not sure what the controller name is $.post('<%= Url.Action("Refresh", "RefreshItems") %>', function(data) {// Update the ItemList html element$('#ItemList').html(data); }); } , 30000); });</script>
上面的代码应放置在包含页面(即不是局部视图页面)中。请记住,局部视图不是完整的html页面。
我最初的猜测是可以将该脚本放置在局部脚本中,并进行如下修改。确保将ajax数据类型设置为
html。
<script type="text/javascript"> setInterval(function() { // not sure what the controller name is $.post('<%= Url.Action("Refresh", "RefreshItems") %>', function(data) { // Update the ItemList html element $('#ItemList').html(data); }); } , 30000);</script>
另一种选择是将javascript存储在单独的
js文件中,并在ajax成功回调中使用Jquery
getscript函数。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)