修改 click 为 mouseover
如实例代码(点击切换)
//热门TAB
    $('.index_xh_sell_xpph .tab li').click(function(){
        var _index=$(this).index();
        $(this).addClass('active').siblings().removeClass('active');
        $('.index_xh_sell_xpph .list_item').eq(_index).show().siblings().hide();
    })改成(鼠标移动切换)
//热门TAB
    $('.index_xh_sell_xpph .tab li').mouseover(function(){
        var _index=$(this).index();
        $(this).addClass('active').siblings().removeClass('active');
        $('.index_xh_sell_xpph .list_item').eq(_index).show().siblings().hide();
    })


