我有一个闲置的例子:
<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
,即使我返回错误。
我想要发生的是仅在Misc.validateForm();
不返回任何内容时才运行警报
关于这个问题的任何想法?