최근에 역사상 가장 간단하고 실용적인 zepto를 썼다.js tab 전환 실현

1538 단어 tab
낡은 규칙, 먼저 코드를 붙여라.
<script>
    $(function(){
        window.onload = function()
        {
            var $li = $('.taocan-title li');
            var $ul = $('.taocan-content .con110');
                        
            $li.mouseover(function(){
                var $this = $(this);
                var $t = $this.index();
                $li.removeClass();
                $this.addClass('active');
                $ul.css('display','none');
                $ul.eq($t).css('display','block');
            })
        }
    });
</script>

좋은 웹페이지 즐겨찾기