2015年2月2日

 $(".sroll .qselect").find('li').each(function(k) {
    $(this).on("click",
    function(e) {
        e.stopPropagation();
        e.preventDefault();
        $(this).find(".radio").addClass("active3 fadeInRight animated");
        $(this).siblings().find(".radio").removeClass("active3 fadeInRight animated");
        switch (k) {
            case 0:
                $("#K1").removeClass("hide").siblings().addClass('hide');
                break;
            case 1:
                $("#K2").removeClass("hide").siblings().addClass('hide');
                break;

        }
        return false;
    })

});
人如代码,规矩灵活;代码如诗,字句精伦。
原文地址:https://www.cnblogs.com/xinlinux/p/4268934.html