我有两个页面(case_1.html,blog_1.html),另外两个页面包含两个页面(case.html,blog.html)的 facebook like it 按钮。当我喜欢 case_1.html 时,我得到的喜欢按钮的标题与我喜欢 blog_1.html 的标题相同。
我还在 case_1.html 中使用了开放图形标记,但我得到了与 blog_1.html 相同的标题。
请帮我。我的 case_1.html 代码是
<title>Case Study </title>
<meta property="og:title" content="Case Study " />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://mywebsites.com/case_1.html" />
<meta property="og:image" content="http://mywebsites.com/img/case_study/Arvind.JPG" />
<meta property="og:site_name" content="mywebsites.com" />
<meta property="fb:app_id" content="my_id" />
我在标签下面的case.html上使用下面的代码来喜欢它
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-like" data-href="http://mywebsites.com/case_1.html" data-send="true" data-layout="button_count" data-width="450" data-show-faces="false" data-font="arial"></div></div>