正在使用应用程序,需要在 10 秒后执行 postCook 函数,但出现问题。刚刚使用 Javascript / jQuery 工作了几天,所以仍然没有 flooowing :)
但是现在已经坚持了几个小时所以即使它让我心碎我也需要征求意见
$(document).ready(function() { setTimeout("postCook", 10000);
};
function postCook()
{
FB.api(
'/me/app:action',
'post',
{ game: '<?php echo get_permalink(); ?>' },
function(response) {
if (!response || response.error) {
alert('Error occurred');
} else {
alert('Successful! Action ID: ' + response.id);
}
});
}
可以毫无问题地使用按钮执行它,因此 100% 确保它在 setTimeout 内