我需要在此脚本中设置CSS属性以与动画一起使用,但是我似乎做得不好。

当激活点击功能时,我需要ID为“container”的div来设置CSS属性。我需要将overflow: hidden设置为#container

这是我的剧本。

$(function() {
    $(".folderContent").hide();

    $(".signin").click(function(event) {
        var folderContent = $(".folderContent");


        var folderContentShown = folderContent.css("display") != "none";

        var clickedFolder = $(this);
        clickedFolder.parent("#signincontainer").after(folderContent);

        $("body").find("#container").not(clickedFolder).each(function() {
            if (!folderContentShown) $(this).not("#signincontainer").animate( {
                opacity: 0.50
            }, "slow");
            else $(this).animate({
                opacity: 1.00
            }, "slow");
        });

        //clickedFolder.animate({opacity: folderContentShown ? 1.00 : 0.70}, "fast");
        folderContent.slideToggle();
        event.preventDefault();
    });
});

最佳答案

$('#container').css('overflow','hidden');

你有尝试过吗?

关于jquery - 将CSS属性添加到jQuery,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5532076/

10-09 13:23