我目前正在使用應用GreyScale懸停效果的jQuery插件。該插件完美地工作。ajax調用後重新初始化jQuery函數
插件所在的頁面使用基於Ajax的過濾。正因爲如此,下面的代碼只能在初始加載時正常工作。我需要能夠在每個過濾器上重新初始化這兩個元素。
我已經用$(document).on
嘗試,因爲我使用jQuery 1.7.2,但不能得到這個工作..
$(function() {
// fade in the grayscaled images to avoid visual jump
$('.colour img').hide().fadeIn(1000);
});
// user window.load to ensure images have been loaded
$(window).load(function() {
$('.colour img').greyScale({
// call the plugin with non-defult fadeTime (default: 400ms)
fadeTime: 500,
reverse: false
});
});
哪個插件,你可以分享一些更多的代碼 – mprabhat 2012-04-18 11:26:07