在js中怎么結束當前for循環?
在循環外面定義一個變量,在循環中滿足條件的地方給變量賦值,并return(終止當前循環) 然后判斷變量的值來終止當前方法,直接上代碼 var check = true; $("#form").find("input").each(function (index,item) { if ($(item).attr("name") != "id" && $.isNull($(item).val())) { check = false; return ; } }); if (!check) { return; }