Firefox正在改变我的代码?

时间:2012-08-13 20:39:58

标签: jquery firefox cross-browser

以下是chrome和firefox读取的相同.js文件...(最新版本) 有人能看出差异吗? firefox将'fadeTo'改为'fadeOut'和'fadeIn' 我写的原始脚本是淡入淡出 为什么会这样?

火狐:

$('document').ready(function(){
$('#errors').css('display', 'none');
$('#errors').fadeIn('fast');

if ($('#errors').length){
    $('#content').fadeOut('slow');
}
$('#container').click(function(){ 
$('#errors').fadeOut('slow'); 
$('#content').fadeIn('fast');
});


});

铬:

$('document').ready(function(){
$('#errors').css('display', 'none');
$('#errors').fadeIn('slow');

if ($('#errors').length){
$('#content').fadeTo('slow', 0.5);
}

$('#container').click(function(){ 
$('#errors').fadeOut('fest'); 
$('#content').fadeTo('slow', 1.0);
});

});

1 个答案:

答案 0 :(得分:2)

我敢打赌好钱缓存是罪魁祸首。一个浏览器正在缓存此文件的旧副本。清除两个浏览器中的缓存并刷新。或尝试换班。