我正在尝试编写一个脚本,该脚本可以使用 jQuery 动态访问网页上 Facebook Like 按钮的所有实例,但无法找出正确的选择器。
点赞按钮的上下文可以在 Facebook 网站上:
<span><a href="#" role="button" aria-live="polite" title="Like this" data-ft="{"tn":">"}" class="UFILikeLink" id=".reactRoot[0]">Like</a></span>
或第三方网站(类似按钮似乎嵌入在 iFrame 中:
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FLike-Button%2F122072747813316&layout=standard&show_faces=false&width=1040&action=like&colorscheme=light&height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:1020px; height:35px; margin-left: 10px;" allowtransparency="true"></iframe>
对于后者,我假设我需要首先访问 src 属性等于 FB 的 iframe,例如 url(即http://www.facebook.com/plugins/like.php?)。
我想更改每个赞按钮的背景颜色。我如何在 Facebook 或第三方网站上找到每个赞按钮的实例?