1. 定時循環執行代碼
復制代碼 代碼如下:
window.setInterval(function() {
$.get("service.aspx?method=unreadmessage", function(data) {
if (data != "0")
$('#unreadCount').html(data).show();
else
$('#unreadCount').hide();
});
}, 1000);可以類似這樣寫。
2. 刷新當前頁面
復制代碼 代碼如下:
window.location.reload();