Posted in Javascript onDecember 12, 2013
return false:将停止循环 (就像在普通的循环中使用 'break')。
return true:跳至下一个循环(就像在普通的循环中使用'continue')。
function test(){ var success = false; $(..).each(function () { if (..) { success = true; return false; } }); return success ; }
jquery是对象链,所以$(..).each()返回的还是对象集合。each(function(){}):是回调函数,在回调函数里不能返回结果到回调函数each外面。
Jquery each方法跳出循环,并获取返回值(实例讲解)
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@