我想嵌入推文但没有订婚按钮,即回复,转发等。
我看到你可以通过以下按钮执行此操作:
Remove follow button from embedded tweet
我正在努力弄清楚如何为按钮做这件事。
我该怎么做?
我试过了:
<style>
.TweetAction { display: none; }
</style>
答案 0 :(得分:0)
您可以使用jQuery
进行此操作。
jQuery('idOrClass').contents().find('.TweetAction').hide();
您只需将idOrClass
替换为#id
或.class
。这将进入iframe
并找到其中的每个.TweetAction
并隐藏它。
修改强>
您需要等到iframe
完全加载。
试试这个:
jQuery( document ).ready(function() {
jQuery('idOrClass').contents().find('.TweetAction').hide();
});