我在js中添加了这个:
function customFades() {
(function($) {
$.fn.fadeIn = function(speed, callback) {
return this.animate({opacity: 'show'}, speed, function() {
if (jQuery.browser.msie)
this.style.removeAttribute('filter');
if (jQuery.isFunction(callback))
callback();
});
};
$.fn.fadeOut = function(speed, callback) {
return this.animate({opacity: 'hide'}, speed, function() {
if (jQuery.browser.msie)
this.style.removeAttribute('filter');
if (jQuery.isFunction(callback))
callback();
});
};
})
(jQuery);
}
现在我在使用.hide()。fadeIn();
时遇到了问题所以我的问题是如何在这个问题上应用相同类型的修复?
答案 0 :(得分:0)
似乎问题只发生在我链接动画时.hide()。fadeIn();如果我只使用.fadeIn()那么它可以工作..