フォーラムの投稿の上に Super Sticky または Sticky の投稿を表示できるようにしたいと考えています。言い換えると。ページに投稿があり、スーパー/スティッキー投稿がそこにあります。ただし、投稿のリストの上に、スーパー/スティッキー投稿も表示したいと思います。「特集ディスカッション」タイプのセクションのようなものです。
質問する
732 次
2 に答える
1
だから私は私の問題を解決するためにこれをやった。トピックを保持するテーブルの上に div を追加し、次のように jquery を作成しました。
var rows = $('table.bbp-topics').find('tr.super-sticky');
rows.each(function(index) {
var headhref = $('a.bbp-topic-permalink', this).attr('href');
var headline = $('a.bbp-topic-permalink', this).html();
var excerpt = $('.excerpt', this).text();
var author = $('a.bbp-author-name', this).html();
var photo = $('a.bbp-author-avatar > img', this).attr('src');
var replies = $('.bbp-topic-voice-count', this).text();
var followers = $('.bbp-topic-reply-count', this).text();
var freshness = $('.bbp-topic-freshness > a', this).html();
var meta = $('p.bbp-topic-meta', this).text();
var newrow = '<div class="featured-row"><div class="topic-meta">' +
'<img class="author-photo" src ="' + photo + '">' +
'<div class="author">' + author +'</div> ' +
'<div class="topic-title"><a href="' + headhref + '">' + headline + '<a/></div>' +
'<div class="excerpt">' + excerpt + '</div></div>' +
'<div class="replies"><h3>Replies</h3><hr/><p>' + replies + '</p></div> ' +
'<div class="followers"><h3>Followers</h3><hr/><p>' + followers + '</p></div> ' +
'<div class="freshness"><h3>Updated</h3><hr/><p>' + freshness + '</p></div> ' +
' </div>';
console.log(newrow);
$('#supersticky').fadeIn().append(newrow)
})
うまくいけば、これは他の誰かに役立ちます。
于 2012-08-14T22:40:55.133 に答える