使用nth-child添加新div :(奇数)不起作用

时间:2015-04-28 19:14:03

标签: jquery

目前我们在网站上有一个旋转的标题图形。下面的代码可以在现有图形的末尾添加更多的标题图形(手动放置在html中)。

我需要能够在每个其他现有的标题图形上插入新的标题图形。

以下是原始代码:

var h, headerImgCount;
for (h = 0, headerImgCount = 0; h < events.length; h++) {
    if (events[h].end >= new Date(new Date().getTime() - (24 * 60 * 60 * 1000))) {
        if (events[h].imgHeaderSource) {
            var headerImages = $('<div><img u="image" src="' + events[h].imgHeaderSource + '" /><div style="position:relative;"><a href="' + events[h].url + '" style="display:block; width:100%; height:729px;"></a></div></div>');
            $("#headerImages").append(headerImages);
            headerImgCount++;
        }
    }
}

以下是我尝试使用的代码代替第6行:

("#headerImages div:nth-child(1n)").add(headerImages);

我不明白如何让它发挥作用。

0 个答案:

没有答案