jquery each中包含switch标签判断错误跳过each循环

$('li').each(function(){
    var isbool=true;
    switch($(this).attr('data-type')){
        case 'a':{
            //如果当前li标签下不存在p标签,则跳出
            if($(this).find('p').length==0){
                isbool=false;
            }                                   
            break;
        }
    }
    if(isbool==false){
        return false;
    }
});

你可能感兴趣的:(html兼容,jquery)