Razor(mvc 3)中的“ UpdatePanel”

Razor(mvc 3)中的“ UpdatePanel”,第1张

Razor(mvc 3)中的“ UpdatePanel”

您可以使用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
函数。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4930485.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存