This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 批量删除广播 | |
function ff(){ | |
var list = $$('#talkList>li'); | |
var count = list.length | |
console.log('list length', count); | |
var t = 0 | |
var idx = 0 | |
list.forEach(function(i){ | |
setTimeout(function() { | |
console.log("delete id", i.id, 'idx:', idx++); |