gpt4 book ai didi

javascript - 适用于 google chrome,但不适用于 firefox 和 IE

转载 作者:行者123 更新时间:2023-12-02 18:41:26 25 4
gpt4 key购买 nike

有谁知道为什么这只适用于 chrome。它基本上是一个代码,当您向下滚动导航固定类时,将导航栏捕捉到顶部。函数 fix_top_bar 是一种将创建的条形居中的方法。

function fix_top_bar(){
var barWidth = $('.nav-fixed').width();
$('.nav-fixed').css({ 'left' : '50%', 'margin-left' : '-' + (barWidth/2 + 20) + 'px' });
}

$('document').ready(function() {
$(window).scroll(function() {
if ($('body').scrollTop() > 112) {

$('nav').addClass('nav-fixed');
fix_top_bar();
}else{
$('.nav-fixed').css({ 'left' : '', 'margin-left' : ''});
$('nav').removeClass('nav-fixed');
}
});

fix_top_bar();
$(window).resize(function(){
fix_top_bar();
});
});

最佳答案

我认为你的问题是

$('document').ready(function() {

尝试

$(document).ready(function() { // Note there is no tag <document>

关于javascript - 适用于 google chrome,但不适用于 firefox 和 IE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16797249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com