单击后,JavaScript SetInterval()不起作用

时间:2012-05-20 23:46:51

标签: javascript setinterval

您好我已经编写了这段代码,并且它假设在点击对象后每3000毫秒移动一次对象,但有些时候它不工作的时间,任何人都可以告诉我我做错了什么,我只是在学习javascript;非常感谢你

function move1() {
    var im1 = document.images[0];
    im1.onclick = function() {
        im1.style.left = parseInt(im1.style.left) + 1 + "px";
    }
}

function move2() {
    var im2 = document.images[1];
    im2.onclick = function() {
        im2.style.left = parseInt(im2.style.left) + 10 + "px";
    }
}

window.onload = function() {
    setInterval(move1, 100);
    setInterval(move2, 3000);
}

2 个答案:

答案 0 :(得分:2)

你反过来说。每隔3000毫秒,您可以在点击图像时将图像移动1个像素。

function move(el, ms, px) {
/* moves the el every ms by px
returns the interval id to clear the movement */
    return setInterval(function() {
        el.style.left = parseInt(el.style.left) + px + "px";
    }, ms);
}
window.onload = function() {
    var im0 = document.images[0];
    var im1 = document.images[1];
    im0.onclick = function() {
        move(im0, 100, 1);
    };
    im1.onclick = function() {
        move(im1, 3000, 10);
    };
}

答案 1 :(得分:0)

您的移动功能会在点击时注册图像,但在用户点击之前实际上不会移动。你想要的更像是这样:

function move1() {
    var im1 = document.images[0];
    im1.style.left = parseInt(im1.style.left) + 1 + "px";
}

function move2() {
    var im2 = document.images[1];
    im2.style.left = parseInt(im2.style.left) + 10 + "px";
}

window.onload = function() {
    var im2 = document.images[1];
    im2.onclick = function() {
        setInterval(move2, 3000);
    }

    im1.onclick = function() {
        setInterval(move1, 100);
    }
}