如果没有阻止执行else语句。帮帮忙!
function checarZero() {
$(".ps-form-entry--progressbar").each(function() {
var valorPerc = $(this).val();
if (parseFloat(valorPerc) === 0) {
psLib.NotifyShowHide(
'alert:Você não distribuiu a renda vitalícia.');
event.preventDefault();
} else {
$("#btn-continuar").fadeIn("fast");
}
});
}
答案 0 :(得分:1)
那是因为event
未定义。
鉴于您提供的代码段是您的代码,您应该在JS控制台中看到错误。
event
变量应该传递到checarZero
函数,以便取消它。
从代码段开始,很难说你正在寻找什么样的事件,如果你只想停止执行.each
循环,你必须return false;
答案 1 :(得分:0)
只需return false
即可打破循环。