var pathName;
if (window.location.pathname.indexOf("big5") != "-1") {
pathName = window.location.pathname.replace("/gate/big5/", "");
pathName = pathName.split("/")[1];
} else {
pathName = window.location.pathname.split("/")[1];
}
var activeEl = document
.querySelector(".header-container")
.querySelector(".menu-list")
.querySelectorAll(".menu-item");
activeEl.forEach((item) => {
if (pathName != "" && pathName != "index.shtml") {
if (
item.querySelector("a").getAttribute("href").indexOf(pathName) != -1
) {
item.querySelector("a").style.color = "#ff6c00";
}
}
});
if (window.location.pathname.indexOf("big5") != "-1") {
$(".menu-item-10-sub1 a").html(
'繁體'
);
$(".menu-item-10-sub2 a").html(
'簡體'
);
} else {
$(".menu-item-10-sub1 a").html(
'繁体'
);
$(".menu-item-10-sub2 a").html(
'简体'
);
}