怎么用javascript在页面上添加一个文本框,一个开始按钮一个结束按钮,点击开文本框开始从1开始按秒计时

点击停止按钮就停止计时。求代码
2024-10-30 15:22:52
推荐回答(1个)
回答(1):





recursion



onload = function ()
    {
    var txt = document.createElement ('input');
    txt.type = 'text';
    txt.value = 1;
    var startBtn = document.createElement ('input');
    startBtn.type = 'button';
    startBtn.value = 'start';
    startBtn.onclick = function ()
    {
    if (!this.interval)
    {
    this.interval = setInterval (function ()
    {
    txt.value++;
    }, 1000);
    this.disabled = 'disabled';
    }
    };
    var stopBtn = document.createElement ('input');
    stopBtn.type = 'button';
    stopBtn.value = 'stop';
    stopBtn.onclick = function ()
    {
    if (!!startBtn.interval)
    {
    clearInterval (startBtn.interval);
    startBtn.removeAttribute ('disabled');
    startBtn.interval = null;
    }
    };
    var body = document.body;
    body.appendChild (txt);
    body.appendChild (startBtn);
    body.appendChild (stopBtn);
    };