2

我有一个 addthis 插件,用于在我的 blogspot 博客中显示推文总数。我以这种方式使用它如果我提到 tw:counturl="my_specific_blogger_url" > 它会显示推文的确切数量。但问题是在这种情况下我只能使用一个链接。要检索我使用的特定博客页面 url <data:blog.url/>。但是,如果我以下列方式在 tw:counturl 中使用它:

tw:counturl="<data:blog.url/>"它显示为错误,因为 tw:counturl 无法处理“<”标签。有解决办法吗。

错误如下The value of attribute "tw:counturl" associated with an element type "null" must not contain the '<' character.

4

2 回答 2

1

好的,我找到了答案。您必须添加一个 javascript 代码来处理它。

var tweet_button = document.getElementById(&#39;addthis_button_tweet&#39;);
tweet_button.setAttribute(&#39;tw:counturl&#39;, <data:blog.url/>);
于 2012-11-16T03:23:18.493 回答
0

这应该可以,您只需要在 tw:counturl 之前添加“expr”。我能够通过以下方式在我的 Blogger 网站上运行它:

<a class='addthis_button_tweet' expr:tw:counturl='data:blog.url'/>

这需要输入到模板本身模板 -> 编辑 HTML -> 继续。

我希望这对你有用。

于 2012-11-16T14:36:36.290 回答