我正在使用jQuery计时器,它使用这个脚本
启动init函数var Example1 = new(function () {
var $stopwatch, // Stopwatch element on the page
incrementTime = 70, // Timer speed in milliseconds
currentTime = 0, // Current time in hundredths of a second
updateTimer = function () {
$stopwatch.html(formatTime(currentTime));
currentTime += incrementTime / 10;
},
init = function () {
$stopwatch = $('#stopwatch');
Example1.Timer = $.timer(updateTimer, incrementTime, true);
};
this.resetStopwatch = function () {
currentTime = 0;
this.Timer.stop().once();
};
$(init);
});
我想在用户点击按钮时开始 我正在使用示例1秒表 http://jchavannes.com/jquery-timer/demo
我想让用户在其他按钮上使用除了页面加载
之外的工作答案 0 :(得分:1)
使用jQuery click
事件:
$('button').click(function(){
var $stopwatch,
incrementTime,
/* */
});