我有一个分为 4 个子类别的网站。每个类别都包含我想根据父类别更改的 html 文件。基本上,我希望 jquery 读取 HTML 文档的文件夹名称,并根据名称启动脚本。我希望每个类别都针对不同的类别(这就是为什么我需要单独的类别)我已经解决了以下代码:
$(document).ready(function() {
$('.workopen').click(function(e) {
$(this).siblings('.open').addBack().toggleClass('open');
e.stopPropagation();
});
if (window.location.pathname.indexOf("firstcategory") > -1) {
$('.work .workopen .four').siblings('.open').addBack().toggleClass('open')
$('.one .inner2, .two .inner2, .three .inner2').hide();
$('.etc').css("text-decoration", "underline");
}
});
它正是我想要的!但一次只能处理一个类别(firstcategory)。我的问题是:我可以写一个 if/else 语句来允许我更改另外三个类别吗?还是我必须编写 4 个单独的 JS 文件?