在前端開發(fā)中,jQuery是一個(gè)非常常見的JavaScript庫,在頁面使用時(shí),通過選擇器、事件和遍歷等各種方法,實(shí)現(xiàn)對(duì)頁面元素的操作和交互。本文將介紹使用jQuery的遍歷方法和點(diǎn)擊事件來實(shí)現(xiàn)對(duì)
//遍歷<li>元素
$('li').each(function(index) {
console.log(index + ":" + $(this).text());
});
//給<li>綁定點(diǎn)擊事件
$('li').click(function() {
$(this).css('color', 'red');
});
在上述代碼中,$('li')表示選擇所有的
這種方式可以方便地實(shí)現(xiàn)對(duì)多個(gè)