我有这个.tpl
文件:
{include file="companies-list.tpl"}
我想{include file="companies-list.tpl"}
使用 div jQuery 每 5 秒自动刷新一次。有可能的 ?
试试这个
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);
您需要一个页面来呈现包含的文件。
setInterval( function() { $('#yourdiv').load("companies-list.php"); }, 5000 );
这并不理想(需要错误检查和超时能力等),但它应该让你走上正轨。