隐藏重叠类。通过单击标记,显示重叠div ..我使用了以下脚本:
$("#client-1 a")。click(function(){$("#client-1 .overlap")。show(600);});
$("#client-2 a")。click(function(){$("#client-2 .overlap")。show(600);});
这个脚本工作正常。我想使用var而不是静态数字,并通过点击任何标签,必须显示标签的特定div ....
textthis是重叠div
textthis重叠
答案 0 :(得分:0)
这样的东西?
var id = "";
var i;
for (i = 1; i < 10; i++)
{
id = "#client-" + i;
$(id + " a").click(function() { $(id + " .overlap").show(600); });
}