$(function(){ var secPageCrumbs = $('.noticeList0753958526930578 .secPageCrumbs'); var secPageCrumbsAs = secPageCrumbs.find('a'); //二级三级跳转 secPageCrumbsAs.each(function (index, ele) { if(index == 0){ //跳转首页 $(ele).on('click',function(){ var url = getAppServer() + "/" + 'hbue'; window.location.href = toDetailPage(url); }) }else{ //跳转一级二级三级列表 $(ele).on('click', function () { var ntype = $(this).attr('ntype') || 0; var catId = $(this).attr('catId'); var refUrl = $(this).attr('refUrl') || 0; var infoId = 0; var openType = 0; jumpToPage({ ntype: ntype, parentId: catId, infoId: infoId, refUrl: refUrl, openType: 0, pageSize: PageSize }); }) } }); })