$(document).ready(function () {
    $(".hs-tab li").each(function (i) {
        $(this).mouseover(function () {
            $(".hs-uls").hide();
            $(".hs-uls").eq(i).show();
           
        })
    })
})

相关文章: