动态数据点击事件

$(document).on('click',".js_tabs_nav", function(){
    var navId = $(this).data("id");
    $(this).siblings("li").removeClass("hover").end().addClass("hover");
    console.log(navId)
})

你可能感兴趣的:(动态数据点击事件)