我有一个addthis插件,用于显示我的blogspot博客中的推文总数。我这样用它
如果我提到tw:counturl =“my_specific_blogger_url”>它显示了推文的确切数量。但问题是,在这种情况下,我只能使用一个链接。
要检索特定的博客页面网址,我使用<data:blog.url/>
。但是,如果我以下列方式在tw:counturl中使用它:
tw:counturl="<data:blog.url/>"
它显示为错误,因为tw:counturl无法处理'&lt;'标签。有工作吗?
错误如下The value of attribute "tw:counturl" associated with an element type "null" must not contain the '<' character.
答案 0 :(得分:1)
好的,我找到了答案。 你必须添加一个javascript代码来处理它。
var tweet_button = document.getElementById('addthis_button_tweet');
tweet_button.setAttribute('tw:counturl', <data:blog.url/>);
答案 1 :(得分:0)
这应该可行,你只需要在tw:counturl之前添加“expr”。我能够使用以下内容在Blogger网站上运行它:
<a class='addthis_button_tweet' expr:tw:counturl='data:blog.url'/>
这需要输入模板本身模板 - &gt;修改HTML - &gt;继续进行。
我希望这适合你。