我有以下 Facebook iframe 作为模板的一部分:
<iframe allowTransparency='true' expr:src='"http://www.facebook.com/plugins/like.php?href=" + data:post.url + "&layout=standard&show_faces=false&width=100&action=like&font=arial&colorscheme=light"' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:576px; height:24px;'/>
主要特点是它使用 Blogspot 变量data:post.url
作为用户可以“喜欢”的链接。不幸的是,最近 blogspot 决定将人们重定向到他们当地的 blospot 地址,所以如果您example.blogspot.com
在英国开业,您将被重定向到example.blogspot.co.uk
,并且您看不到任何来自岛外的人。
显而易见的解决方法是让每个人都喜欢 .com 主页,所以我创建了一个脚本来动态生成这个 iframe:
<script type="text/javascript">
document.write("<iframe allowTransparency='true' frameborder='0' scrolling='no' src='http://www.facebook.com/plugins/like.php?href=");
var thisUrl = "data:post.url";
var beginning = thisUrl.indexOf("blogspot")+9;
var end = thisUrl.indexOf("/", 15);
document.write(thisUrl.substring(0, beginning));
document.write("com");//change regional url to com
document.write(thisUrl.substring(end));
document.write("&layout=standard&show_faces=false&width=100&action=like&font=arial&colorscheme=light' style='border:none; overflow:hidden; width:576px; height:24px;'></iframe>");
</script>
为了让 Blogspot 接受它,我必须对它的部分进行 html-ecap,但我无法将变量data:post.url
替换为正确的值 - 它实际上保持原样。