Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Jquery 的“myclass”末尾添加一个动态生成的数字。所以我希望它在最后增加一个数字,如下所示:
我的班级1
我的班级2
我的班级3
我的班级4
我已经尝试了几次,但不知道我在做什么。任何帮助都会很棒!
var f=1;for(var g=0;g<d.count;g++)for(var f=1; f<3; f++){e.append("<li class='myclass"+f+"'><a>"+f+"</a></li>");f++}
我不确定您要做什么,但这是我的看法。当然,您可以更具体地介绍 jQuery 选择器。
var i = 1; $('li').each(function(){ $(this).addClass('myclass'+i); i++; });
编辑
根据提供的代码:
for(var f = 1; f < 5; f++){ e.append("<li class='myclass"+f+"'><a>"+f+"</a></li>"); f++; }