2011-02-18 32 views
1

我試圖在同一頁上添加多個「贊」按鈕,但指定如不同的URL獲得同Facebook的「贊」計數不同的URL

我有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&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;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&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe> 

問題是他們都顯示相同的「喜歡」數。

我在做什麼錯?

預先感謝任何幫助

回答

1

IMO的問題是空間(%20)在Facebook iframe中轉換爲(%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&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;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&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe> 

希望它能幫助:)

0

一種解決方案是不是很好,但將努力: 做一個Facebook頁面的每個URL。 然後在您的網站上使用likeboxes。

+0

請投票,如果你覺得它有用。 – 2011-02-18 12:01:48

相關問題