gusucode.com > 电脑配件公司电子商务网站源码程序 > 电脑配件公司电子商务网站源码程序/shop/js/shopclass_brand.js

    
$(document).ready(function(){


	
	$("div.shoptwoclass_topright").toggle(function(){
		var topcatid=this.id.substr(13);
		
		$("ul#shopclasssub_"+topcatid).hide();
		$(this)[0].className="shoptwoclass_topright_open";
		$().setBg();
	},function(){
		var topcatid=this.id.substr(13);
		$("ul#shopclasssub_"+topcatid).show();
		$(this)[0].className="shoptwoclass_topright";
		$().setBg();
	});

});