我正在尝试在“forumeiros”(免费论坛)上的所有帖子上点击“Like”按钮
当我在帖子上按“Like”时,它会随机地喜欢所有下一个帖子,对我来说没有任何意义
使用以下代码生成按钮:
jQuery(document).ready(function() {
var url = new Array();
var link = '';
jQuery('.postbody .topic-title a[name]').each(function(index){
link = "http://"+document.domain+jQuery(this).attr("href")+"/";
link = link.replace('#', '/t');
url.push(link);
});
jQuery('p.author').each(function(index){
jQuery(this).after('<iframe src="http://www.facebook.com/plugins/like.php?href='+url[index]+'&layout=standard&show_faces=true&width=450&action=like&colorscheme=light&height=55" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:24px;" allowTransparency="true"></iframe><hr> ');
});
});
这里有两个生成的链接:
http%3A%2F%2Fgmbrdebug-t.forumeiros.com%2Ft2-teste-teste%2Ft2%2F
http%3A%2F%2Fgmbrdebug-t.forumeiros.com%2Ft2-teste-teste%2Ft3%2F
解码:(仅显示设置为 facebook iframe 的 href 属性)
http://gmbrdebug-t.forumeiros.com/t2-teste-teste/t2/
http://gmbrdebug-t.forumeiros.com/t2-teste-teste/t3/
那么,为什么当我首先按“喜欢”时,所有关注者也都“喜欢”了?它们是不同的。
编辑:所有网址都重定向到同一个地方,可能是这样吗?
如果是,有没有办法做到这一点?