欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQuery循环表格,并统计匹配度 博客分类: jQuery jQuery乔乐共享统计匹配度表格 

程序员文章站 2024-03-25 18:29:28
...
// 过期关键词单击事件
	$("#li_overdue_keyword").click(function() {
		$(".listmenu3a").attr("class", "listmenu3");
		$(this).attr("class", "listmenu3a");

		var overdue_count = 0;
		$(".ddtxt2").each(function() {
			var keyWordId = $(this).attr("id").substr($(this).attr("id")
					.indexOf("_")
					+ 1);
			if ("过期" == $.trim($(this).text())) {
				// && "未激活" != $.trim($(this).text())
				overdue_count++;
				$("#div_keyword_" + keyWordId).fadeIn();
			} else {
				$("#div_keyword_" + keyWordId).fadeOut("fast");
			}
		});

		$("#a_overdue_count").text(overdue_count);
	});