如何在第一次调用函数时执行if语句?

时间:2013-09-28 10:55:47

标签: javascript if-statement

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

1 个答案:

答案 0 :(得分: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
    }
})();