var lh = ""; lh = location.href; if (lh.match(/dcmsadm/)) {} else { $(function() { //TOPの時のカレント処理 if (location.pathname == "/" || location.pathname == "/index.html") { //TOPの時のカレントクラスの付与 // クラス li に js-current__top を付けるとTOPとして認識される $('.js-current > li.js-current__top').addClass('is-main_current'); //locatorを削除する $("#locator").remove(); } else { //現在フォルダ取得 メインナビ内の該当liにカレントクラスを付与 var now = location.href.split('/'); var endDir = now.slice(now.length - 1, now.length - 0); //現フォルダ名を取得する場合 var endDir2 = now.slice(3, 4); //第一階層のフォルダ名を取得する場合 //$('.js-current > li a[href$="'+endDir+'/"]').parent().addClass('is-main_current'); $('.js-current > li > a[href$="' + endDir + '"]').parent().addClass('is-main_current'); $('.js-current > li > a[href$="' + endDir2 + '/"]').parent().addClass('is-main_current'); //中ページ用のクラスを付与 $('body').addClass("common"); }; }); }