head
站在用戶(hù)的角度思考問(wèn)題,與客戶(hù)深入溝通,找到麗江網(wǎng)站設(shè)計(jì)與麗江網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶(hù)體驗(yàn)好的作品,建站類(lèi)型包括:成都做網(wǎng)站、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、空間域名、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋麗江地區(qū)。
script src="jQuery/jquery-1.4.1.min.js" type="text/javascript"/script
script
$(document).ready(function () {
setInterval("startRequest()",1000);
//setInterval這個(gè)函數(shù)會(huì)根據(jù)后面定義的1000既每隔1秒執(zhí)行一次前面那個(gè)函數(shù)
//如果你用局部刷新,要用AJAX技術(shù)
});
function startRequest()
{
$("#date").text((new Date()).toString());
}
/script
/head
因?yàn)槟阌肁jax的,默認(rèn)是異步加載,你可以設(shè)置ajax加載為同步的(async:false),這樣就能滿(mǎn)足你的需求,他會(huì)等待ajax執(zhí)行完畢在執(zhí)行var timeout 以后的內(nèi)容。
關(guān)于jquery插件jTimer(jquery定時(shí)器)使用方法
復(fù)制代碼 代碼如下:
(function ($) {
$.extend({
timer: function (action,context,time) {
var _timer;
if ($.isFunction(action)) {
(function () {
_timer = setInterval(function () {
if (!action(context)) {
clearInterval(_timer);
}
}, time);
})();
}
}
});
})(jQuery);
復(fù)制代碼 代碼如下:
#wrap
{
display: table;
margin: 0 auto;
}
#cvs
{
display: table-cell;
vertical-align: middle;
}
function drawRound(context) {
if (context.counterclockwise) {
draw(context.x, context.y, context.r, context.start, context.start - Math.PI / 50, context.counterclockwise);
context.start -= Math.PI / 50;
return context.start 0.5 * Math.PI;
}
else {
draw(context.x, context.y, context.r, context.start, context.start + Math.PI / 50, context.counterclockwise);
context.start += Math.PI / 50;
return context.start Math.PI;
}
}
function draw(x, y, r, sAngle, eAngle, counterclockwise) {
var cvs = document.getElementById("cvs");
ctx = cvs.getContext("2d");
ctx.strokeStyle = "#f00";
ctx.beginPath();
ctx.arc(x, y, r, sAngle, eAngle, counterclockwise);
ctx.stroke();
}
$(function () {
$.timer(drawRound, { x: 100, y: 100, r: 50, start: 1.5 * Math.PI, counterclockwise: true }, 200);
$.timer(drawRound, { x: 100, y: 100, r: 60, start: 0, counterclockwise: false }, 200);
}); ;
你好,請(qǐng)把你提供的代碼中for循環(huán)中的語(yǔ)句
setInterval(module_animate(m.eq(i)),t);
改為
setInterval(function(){module_animate(m.eq(i));},t);
這樣應(yīng)該就可以了。