0

这是 chrome 和 firefox 读取的同一个 .js 文件……(最新版本)有人能看出区别吗?firefox将'fadeTo'更改为'fadeOut'和'fadeIn' 我写的原始脚本是fadeTo 为什么会这样?

火狐:

$('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);
});

});
4

1 回答 1

2

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

于 2012-08-13T20:41:49.153 回答