81041
2019-01-10 68d43a25f5a9e6a6f6d52d5b8e8f0a5671b9c3fc
1
2
3
4
5
6
7
// 点击左侧的导航触发页面的效果
$(function() {
    $('.ul-list').on('click', 'li a:not(.active)', function() {
        $('.ul-list li a').removeClass('active');
        $(this).addClass('active');
    });
});