jQuery return false

总是忘记,记录一下。目测结果哈:

jQuery('#test').click(function(){
    return false;   //取消默认动作和冒泡
});
jQuery('.test').each(function(){
    return false;   //停止循环 即break;
});
原文地址:https://www.cnblogs.com/Gukw/p/2444095.html