我正在尝试将一个数字放入元素列表中 - 一个动态增加的数字 - 例如:
1. text
2. text
3. ...
...
到目前为止,我有这个:
var c = {
current: 0,
count: function () {
this.current++
}
}
$('.box').each(function (index) {
$(".number").text(c.current + 1);
c.count();
});
- 见jsfiddle。但我错过了什么?如何给每个元素自己的编号?
谢谢。