我使用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
}
}
谢谢你的帮助
暂无答案!
目前还没有任何答案,快来回答吧!