4

else 条件を使用せずに、その中にある if ステートメントの条件に応じて、関数の残りを中止することは可能ですか?

以下のコード例。

("#btn").click(function(){
    if(name == call_name){
     alert(err)
    }

    //abort the rest of the function below without the need for else
});

ありがとうございました。

4

3 に答える 3