我在我的 wordpress 帖子循环中有这个:
function newWindow(uri,width,height) {
if(!window.open(uri,uri,'scrollbars=1,toolbar=0,resizable=1,status=0,width='+width+',height='+height)) {
document.location.href=uri;
}
}
$('.facebook_button').click(function() {
newWindow('http://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>',720,420);
return false;
});
因此,当我单击该按钮时,它会打开几个窗口(索引页面上的 10 个帖子中有 10 个)。有没有办法只为按钮所在的帖子打开?
谢谢!