使用Greasemonkey删除少于3转推的推文

时间:2015-07-09 21:36:34

标签: greasemonkey

到目前为止,我有这段代码:

$('.js-stream-item:has(span.ProfileTweet-action--retweet:has(span.ProfileTweet-actionCount[data-tweet-stat-count="0"]))').toggle();

它运行正常但只删除了0转推的推文,我如何按条件使用属性“data-tweet-stat-count”?

提前致谢。

1 个答案:

答案 0 :(得分:1)

我认为你可以这样做:

$('div.stream-item-footer:has(span.action-retweet:has(span.actionCount))').filter(function() {
    return parseInt($(this).find('span.actionCount').attr('data-tweet-stat-count')) >= 3;
}).toggle();