我正在尝试在同一页面上添加多个“赞”按钮,但指定不同的网址
我有2个网址,我想在另一个页面上“喜欢”
http://www.spoilertv.com/search/label/Brothers%20And%20Sisters http://www.spoilertv.com/search/label/Better%20With%20You
这是我的代码。
Better With You <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBetter%2520With%2520You&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe>
Brothers and Sisters <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBrothers%2520And%2520Sisters&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe>
问题在于它们都显示相同的“赞”计数。
我做错了什么?
提前感谢您提供任何帮助
答案 0 :(得分:1)
IMO的问题是在iframe中将空格(%20)转换为(%2520)。
尝试直接使用空间unicode(%20):
Better With You <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBetter%20With%20You&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe>
Brothers and Sisters <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBrothers%20And%20Sisters&layout=button_count&show_faces=false&width=150&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe>
希望有所帮助:)
答案 1 :(得分:0)
一个不太好但可行的解决方案: 为每个URL创建一个Facebook页面。 然后在您网站的页面上使用likebox。