ビューで drupal 7 を使用しており、見つけたアップ/ダウン テキスト スライドに jquery スクリプトを使用しています。うまくいきましたが、ajaxでフィルターを公開したビューで使用しようとすると、うまくいかないようです。
ネットでjqueryスクリプトがライブまたはバインドまたはデリゲートを使用する必要があることを発見しましたが、それを理解することはできません。以下は私が使用するスクリプトです:
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");
});
});
}
どうもありがとうございました