1

所以我需要使用addthis。请访问我正在尝试实施的页面添加此内容。

http://www.iamvishal.com/dev/node/13

添加此按钮不会显示在我的页面上。我可以使用纯 html 代码来实现它,但 drupal 实现不起作用。

js 正在加载,但我无法调试问题,因为我无法找到发生这种情况的问题。

干杯,维沙尔

ps - 有关 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 -->
4

1 回答 1

0

在 D7 中对我有用的是创建一个新的“文本格式”,其中没有启用过滤器。无论出于何种原因,D7 都认为 AddThis 代码有错误或不完整。

配置 > 内容创作 > 文本格式 > 添加文本格式

试一试。

于 2012-04-23T15:50:17.473 回答