我可以选择在我的网站上邀请Facebook好友,并使用下面给出的代码。但问题是它在弹出窗口中打开,而chrome和firefox会阻止弹出窗口。如何使其显示在新选项卡或窗口中?或者有什么方法可以让我的弹出窗口被阻止?
<html>
<head>
<title>my website</title>
</head>
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js">
</script>
<script>
FB.init({
appId:'xxxxxxxxxxxxxxx', cookie:true,
status:true, xfbml:true
});
FB.ui({ method: 'apprequests',
message: 'Take a look at this new website.'});
</script>
</body>
</html>
答案 0 :(得分:1)
你基本上有两个选择;
在鼠标点击事件上打开弹出窗口(因为这些事件未被浏览器阻止)或
不要使用真正的弹出式窗口,而是使用一些很酷的DHTML小部件,例如http://thickbox.net/