3
爲什麼這不起作用?FB.XFBML.parse未捕獲[object Object]
$('.fb-like-button').each (function(){
if ($(this).html() == "" || !$(this).html() || $(this).html() == "undefined")
{
$(this).html('<fb:like href="'+$(this).attr("data-url")+'" layout="button_count" send="false" show_faces="false" width="100" action="like" font="verdana" colorscheme="light" />');
FB.XFBML.parse($(this));
$(this).attr("class", "done");
}
});
錯誤:未捕獲的翻譯:
$(this).attr(「data-url」)你可以提醒這個檢查網址嗎? – 2013-03-01 12:59:22
是的,我做了:console.log($(this).attr(「data-url」))和url是正確的。錯誤在這裏:FB.XFBML.parse($(this)); – mitch 2013-03-01 13:03:33