这是 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);
});
});