0

我有这个.tpl文件:

{include file="companies-list.tpl"}

我想{include file="companies-list.tpl"}使用 div jQuery 每 5 秒自动刷新一次。有可能的 ?

4

2 回答 2

1

试试这个

       var refreshId = setInterval(function() {
       jQuery("#divid").load(yourfilename,
        function(response, status, xhr) {           
                    if (status == "error") {
                    var msg = "Sorry but there was an error: ";
    jQuery("#youdiv").html(msg + xhr.status + " " + xhr.statusText);
                          }
                });
         },5000);
于 2013-03-06T12:07:52.577 回答
0

您需要一个页面来呈现包含的文件。

setInterval( function() { $('#yourdiv').load("companies-list.php"); }, 5000 );

这并不理想(需要错误检查和超时能力等),但它应该让你走上正轨。

于 2013-02-07T21:53:07.277 回答