我将以下Facebook iframe作为模板的一部分:

<iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.url + &quot;&amp;layout=standard&amp;show_faces=false&amp;width=100&amp;action=like&amp;font=arial&amp;colorscheme=light&quot;' 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转义,但是我无法将变量data:post.url替换为正确的值-实际上,它仍然保持不变。

最佳答案

要显示Blogger变量,您需要使用<data:blog.varName/>

因此,就您而言,不是:

var thisUrl = "data:post.url";


您需要使用:

var thisUrl = "<data:post.url/>";



UPD 1:如果要在标题部分使用页面URL,请使用<data:blog.url/>而不是<data:post.url/>

UPD 2:但是为什么不使用window.location

关于javascript - 如何在Blogspot模板中有一个使用Blogspot变量的脚本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11001586/

10-13 02:01