js 布尔值作为开关判断

	var flag = true;
	$("#more_info").click(function() {
		if( flag ){
			$("#more_xl_more").show();
			$("#more_xl_more").text(teamName);
			flag = false;
		} else {
			$("#more_xl_more").hide();
			flag = true;
		}
	}); 

  

原文地址:https://www.cnblogs.com/zsongs/p/6078245.html