代码实现:
let arr = document.querySelectorAll(‘li‘)
for(let i = 0;i < liArr.length;i++) {
arr[i].onclick = function () {
console.log(‘原生循环‘);
}
}
// 隐式迭代实现
$(function () {
$(‘li‘).on(‘click‘,function () {
console.log(‘隐式迭代‘);
})
})
//可以用无序列表体验一下
jQuery设置样式属性
$(‘#eg‘).css(
{‘width‘:‘233px‘
‘height‘:‘121px‘
}
)
原文:https://www.cnblogs.com/Code-Is-Fun/p/14713525.html