$(function(){ // サブメニューの表示/非表示処理 $("ul.sub_menu").slideDown(); $("a.category").click(function(){ $("ul.sub_menu").slideUp(); if($("+ul", this).css("display") == "none"){ $("+ul", this).slideDown(); } }); // 「2024年」のリンクが存在するかを確認して追加 if ($('li a[title="2024年"]').length === 0) { const newListItem = $('
  • 2024年
  • '); const existingListItem = $('li a[title="2023年"]').parent(); newListItem.insertBefore(existingListItem); } // 「2023年」のリンク先を変更 $('li a[title="2023年"]').each(function() { if ($(this).attr('href') === "../biography/index.html") { $(this).attr('href', "../biography/2023.html"); } }); });