以下是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);
});
});
答案 0 :(得分:2)
我敢打赌好钱缓存是罪魁祸首。一个浏览器正在缓存此文件的旧副本。清除两个浏览器中的缓存并刷新。或尝试换班。