在我的网站上,我提供的CD提供每五秒轮换一次。这适用于除了Internet Explorer之外的所有浏览器,它们保留在第一张CD上。
function updateTarget( txt ) {
'use strict';
document.getElementById('offers').innerHTML = txt;
}
window.onload = function() { // attach an onload handler
getOffers(); // call the function below, getQuotes()
};
var getOffers = function() {
// call getRequest with the url, the callback, displayQuotes, and false meaning not xml
getRequest('getOffers.php', updateTarget, false);
setTimeout(getOffers, 5000); // set a timer to call this same function again in 5 seconds
};
我已尝试将标题中的日期设置为过去的日期,但这不起作用。我曾试图使用setinterval但又没有运气。
对此有任何帮助将不胜感激。