$('ul[role="tablist"]').on('click','li[role="presentation"]',function () {
$('li[role="presentation"]').attr('class','');
$(this).attr('class','active');
console.log();
});
$('li[role="presentation"]') # 查找页面中所有li标签且role属性为presentation的元素
$(this) # 触发事件的元素
网友评论