gpt4 book ai didi

javascript - while循环采用each方法

转载 作者:行者123 更新时间:2023-11-28 19:26:53 24 4
gpt4 key购买 nike

我根据用户的点击使用静态数字向页面添加元素。所以元素有根据用户点击的序列号。

当用户单击任何元素并删除时,我需要重新排列序列号。我尝试将每个运算符与 while 循环一起使用,但不起作用。

请任何人向我建议正确的方法。

这是我的尝试:

var num = this.clipsLength, clipNum=1;

while(this.clipsLength > 0){

$.each(this.collection.pages, function(index, page) {

$.each(page, function(n, cs) {
var title = $(cs).find('span.text');
title.html('Clipping' + clipNum); //always 0 or all clips are '0'
});

});

--this.clipsLength;
clipNum = num-this.clipsLength;
}

这里的尝试是 fiddle :

Live Demo

最佳答案

你的意思是重置号码之类的东西吗?

http://jsfiddle.net/Lgwow5pt/2/

$('#content').on('click', '.remove', function () {
$(this).parent().remove();
$('span').each(function(i, item){
item.lastChild.textContent = i+1;
});

关于javascript - while循环采用each方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27719061/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com