본문 바로가기
javascript

breadcomb에 gnb 메뉴명 집어넣기

by 바나냥 2020. 4. 3.
<script type="text/javascript">
	$(document).ready(function(){
		gnbMenu(2, 1);
	});
</script>


function gnbMenu(depth1, depth2){
	var depth2 = depth2 - 1,
		depth1 = depth1 -1;
		
	 $('.oneMenu').find('a.big').find('span').text($('.nav .nav_m li.menu:eq('+depth1+') > a').text());
	 $('.twoMenu').find('a.small').find('span').text($('.nav .nav_m li.menu:eq('+depth1+')').find('.nav2 li:eq('+depth2+') a').text());
	 
	 $('.twoMenu').find('.downMenu').find('a').remove();
	 $('.twoMenu').find('.downMenu').append($('.nav .nav_m li.menu:eq('+depth1+')').find('.nav2 li a').clone());
	
}

댓글