是否可以将 Facebook 的postLike 函数包含到下面的 jquery 代码中以处理按钮单击或提交?
function postLike(){FB.api("/me/og.likes","post",{object:"http://test.com/test"})}
$(".bookmark_form").live("submit",function(a){a.preventDefault();$.post("/",
$(this).serialize(),function(){$("#buddy").html(" ");
$.ajax({url:$("#buddy").attr("rel"),
dataType:"html",success:function(c){$("#buddy").html(c)}});return false})});
先感谢您!