如何通过点击按钮来调用时间

时间:2014-07-01 07:08:49

标签: jquery

我正在使用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

我想让用户在其他按钮上使用除了页面加载

之外的工作

1 个答案:

答案 0 :(得分:1)

使用jQuery click事件:

$('button').click(function(){
   var $stopwatch,
   incrementTime,
   /* */
});