2011年8月9日 星期二

[JavaScript] SetTimeout() 指定時間傳遞參數

 window.setTimeout() 函式在指定的時間所要執行的函式如何傳遞需要的參數

function someMethod(img) {
    return function() {
        img.oSrc = img.src;
    }
}


window.onload = function() {
    var img = document.getElementById('someImg');
    ...
    ...
    
    setTimeout(show(img), 1500);
}


沒有留言: