pull/1090/head
贤心 2022-07-18 00:00:49 +08:00
parent b4718f0e37
commit 37bc2311ca
1 changed files with 2 additions and 2 deletions

View File

@ -131,9 +131,9 @@ layui.define('jquery', function(exports){
,filter = parents.attr('lay-filter');
if(li.hasClass(THIS)){
if (li.next()[0] && li.next()[0].tagName === 'LI'){
if (li.next()[0] && li.next().is('li')){
call.tabClick.call(li.next()[0], null, index + 1);
} else if (li.prev()[0] && li.prev()[0].tagName === 'LI'){
} else if (li.prev()[0] && li.prev().is('li')){
call.tabClick.call(li.prev()[0], null, index - 1);
}
}