从jquery每个循环中退出js函数?

j8yoct9x  于 2021-09-13  发布在  Java
关注(0)|答案(0)|浏览(214)

我使用jquery$。每个函数在表中执行一些操作。如果此表中的某个值为空,我希望停止整个函数。“返回false;”只是打破了每个循环,而不是完整的功能。我该怎么做?

function readFields(){
    $('#tbl_units').each(function(key, value){
        if($(value).val() === undefined){
           return false; //This one will only break the .each, but not the complete readFields-function. But I want to completely exit the readFields function
        }
        //Some other stuff todo
    }
}

谢谢你的帮助

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题