0
當前在我的網站上使用Prototype。原型到jQuery
我想知道是否有另一種jQuery函數,這個函數原型:
new Ajax.PeriodicalUpdater('content', '/shouts/update.js', { method: 'get', frequency: 3});
THX,
俄德
當前在我的網站上使用Prototype。原型到jQuery
我想知道是否有另一種jQuery函數,這個函數原型:
new Ajax.PeriodicalUpdater('content', '/shouts/update.js', { method: 'get', frequency: 3});
THX,
俄德
嘗試
window.setInterval(function() {
$("content").load("/shouts/update.js", function(data) {
// Handle data manually. God knows what your update.js file is doing
}));
}, 3000);
這裏是相同的原型庫函數移植到JQuery的:
它的怪異,因爲setInterval函數適用於「警報(」測試「)」,但它不工作,爲$ .load – 2011-01-28 15:08:39