2019-11-15 单击事件
2019-11-15 本文已影响0人
浩克啊12138
$('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) # 触发事件的元素