这是我的代码:
$(window).scroll(function() {
var currentScroll = $(window).scrollTop();
if (currentScroll >= 75) {
$('#ticketDetailsButtons').css({
position: 'fixed',
top: 75
});
} else {
$('#ticketDetailsButtons').css({
position: 'static'
});
}
});
在其位置值更改为静态后,我无法再单击它,我只能看到它。有什么想法吗?
答案 0 :(得分:0)
我的猜测是你有一个更高的z-index
覆盖按钮的元素。看看你的HTML会很有帮助。