`
ynial
  • 浏览: 225631 次
  • 来自: ...
社区版块
存档分类
最新评论

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");
			}
		});
	}
})
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics