所以我需要使用addthis。请访问我试图实现的页面添加此内容。
http://www.iamvishal.com/dev/node/13
添加此按钮不会显示在我的页面上。我能够使用普通的HTML代码实现它,但drupal实现不起作用。
js正在加载,但我无法调试问题,因为我无法找到问题,为什么会发生这种情况。
欢呼声, 维沙尔
p.s - 有关addthis的更多信息请访问http://www.addthis.com/
代码:
<script type="text/javascript">
(function ($) {
Drupal.behaviors.slider = {
attach:function(context) {
var script = 'http://s7.addthis.com/js/250/addthis_widget.js#domready=1';
if (window.addthis) {
window.addthis = null;
}
$.getScript(script);
}
};
}(jQuery));
</script>
<div id="sociallinks">
<div class="viewing">Request a viewing</div>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
<a class="addthis_button_compact"></a>
<a class="addthis_counter addthis_bubble_style"></a>
</div>
<!-- AddThis Button END -->
</div><!-- end of social links -->
答案 0 :(得分:0)
在D7中对我有用的是创建一个新的“文本格式”,其中启用了 no 过滤器。无论出于何种原因,D7认为AddThis代码有缺陷或不完整。
配置&gt;内容创作&gt;文本格式&gt;添加文字格式
试一试。