我正在使用带有视图的drupal 7,并且我正在使用我找到的向上/向下文本幻灯片的jquery脚本。它有效,但是当我尝试将它与带有 ajax 的视图暴露过滤器一起使用时,它似乎不起作用。
我在网上发现 jquery 脚本必须使用 live 或 bind 或委托,但我无法弄清楚。下面是我使用的脚本:
jQuery(function() {
jQuery('.feature_box').showFeatureText();
});
jQuery.fn.showFeatureText = function() {
return this.each(function() {
var box = jQuery(this);
var text = jQuery('p', this);
text.css({
position: 'absolute',
bottom: '0%'
}).hide();
box.hover(function() {
text.slideDown("fast");
}, function() {
text.slideUp("fast");
});
});
}
非常感谢