requestAnimationFrame 可提升页面的渲染效果
// index.html
<ul id='js-list'></ul>
(function(){
let ulBox = document.getElementById('js-list');
if(!ulBox) return;
const total = 3000; // 待生成的总数(li节点)
const step = 5; // 每个片段生成的数量
const executorNum = total/step; // 需要执行生成片段节点的次数
let num = 0; // 记录已经生成了几轮片段次数
let animationId;
function createFragment() {
let fragment = document.createDocumentFragment(); // 创建片段
for(let i = 0; i < step; i++) {
let node = document.createElement('li');
node.innerText = (num*step) + i + 1;
fragment.appendChild(node); // 将li节点添加到片段中
}
num++;
ulBox.append(fragment);
setNode(); // 每次执行完后再次执行requestAnimationFrame;
}
setNode();
function setNode() {
if(num < executorNum) {
animationId = window.requestAnimationFrame(createFragment);
} else {
window.cancelAnimationFrame(animationId);
}
}
// 在生成的li节点上添加事件
ulBox.addEventListener('click',function(e) {
const target = e.target;
if(target.tagName === 'LI') {
alert(target.innerText);
}
})
})()