<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
//-----------------------------------------
//**鍏ㄥ眬缁勪欢鏍峰紡閲嶇疆*****
//-----------------------------------------
$(document).ready(function () {
	// 鎵嬫満鐗堟牱寮�
	$(".menu-bar").click(function () {
		$(".main-nav").slideToggle();
	});

	/* ------------------------------------------------
   * TAB鍒囨崲
   --------------------------------------------------*/
	//TAB鍒濆鍖�
	$(".tab-hd").each(function () {
		$(this).children(".tab-item").eq(0).addClass("active");
	});
	$(".tab-md").each(function () {
		$(this).children(".tab-item").hide().eq(0).show();
	});
	//TAB鐐瑰嚮浜嬩欢
	$(".tab-hd .tab-item").click(function () {
		$(this).addClass("active").siblings().removeClass("active");
		var index = $(this).index();
		var tabname = $(this).parent().attr("tabname");
		//console.log(tabname);
		$(".tab-md[tabname=" + tabname + "]").each(function () {
			console.log($(this));
			$(this).children(".tab-item").hide().eq(index).show();
		});
	});
});
</pre></body></html>