opencart 在主菜单下设置current_item 在菜单下高亮当前分类

opencart 在主菜单上设置current_item 在菜单上高亮当前分类
$(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");
			}
		});
	}
})