欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery点击来回切换img图片的src指定元素的高度显示与隐藏

程序员文章站 2024-01-07 17:44:34
...
$(".clickMore img").click(function(){
        if($(this).attr('src')=='/resource/component/kms/img/moreIcon.png'){
            $(this).attr('src','/resource/component/kms/img/lessIcon.png');
            $(this).parents("div.ssfl").css("height","auto");
        }else{
            $(this).attr('src','/resource/component/kms/img/moreIcon.png');
            $(this).parents("div.ssfl").css("height","30px");
        }
    })
相关标签: 日积月累

上一篇:

下一篇: