滚动后固定按钮失去功能

时间:2014-07-30 16:33:53

标签: javascript jquery css

这是我的代码:

$(window).scroll(function() {
        var currentScroll = $(window).scrollTop();
        if (currentScroll >= 75) {
            $('#ticketDetailsButtons').css({
                position: 'fixed',
                top: 75
            });
        } else {
            $('#ticketDetailsButtons').css({
                position: 'static'
            });
        }
    });

在其位置值更改为静态后,我无法再单击它,我只能看到它。有什么想法吗?

小提琴:http://jsfiddle.net/wzp7f/

1 个答案:

答案 0 :(得分:0)

我的猜测是你有一个更高的z-index覆盖按钮的元素。看看你的HTML会很有帮助。