我最近创建了一个网站,其中有一个导航栏,它包含在使用 PHP 的页面中。
<?php include "Assets/Inclusions/NavigationBar.php" ?>
我希望活动页面列表项具有粗体文本,因此我使用 JavaScript 获取当前路径并使用大量 if 语句使相关元素变为粗体。
<script>
if(location.pathname == 'location.php')
document.getElementById("location").style.fontWeight="800";
} ...and so on
</script>
有没有更好的方法我应该这样做?