$(function(){
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,""])[1]
);
}
var path = getURLParameter("path");
if (path != "") {
$("#menu li a").each(function() {
if ($(this).attr('href').indexOf('path=' + path) > -1) {
$(this).css("background-color", "#000");
}
});
}
})
opencart 在主菜单上设置current_item 在菜单上高亮当前分类
最新推荐文章于 2021-10-27 21:47:42 发布