window.setTimeout() 函式在指定的時間所要執行的函式如何傳遞需要的參數
function someMethod(img) {
return function() {
img.oSrc = img.src;
}
}
window.onload = function() {
var img = document.getElementById('someImg');
...
...
setTimeout(show(img), 1500);
}
沒有留言:
張貼留言