1

我在函数中有一个 if 语句。如何仅在第一次调用函数时执行 if 语句?

4

1 回答 1

3

你可以用这个

var notFirstRun = false;
function myFunction(){
    if (notFirstRun) return; // this will "exit" the function
    else notFirstRun = true;

    if (foo == bar){ // your if statement
       // somecode
    }
    // rest of the function
}

或范围更广的事件:

var myFunction = (function(notFirstRun) {
    return function() {
        if (notFirstRun) return; // this will "exit" the function
        else notFirstRun = true;

        if (foo == bar) { // your if statement
            // somecode
        }
        // rest of the function
    }
})();
于 2013-09-28T10:58:11.103 回答