私は以下の例を持っています:
<input type="button" id="create_account" value="Save">
var Misc = {
validateForm: function () {
if(x == 1){
return false;
}
// this is a simplified example, but sometimes x != 1 and there is no return
}
}
$(document).on('click', '#create_account', function() {
Misc.validateForm();
alert('continue');
});
私が抱えている問題は、continue
false を返しても を取得することです。
Misc.validateForm();
私がやりたいことは、何も返さない場合にのみアラートを実行することです
この問題に関するアイデアはありますか?