0

因为我已经通过下面的脚本嵌入了 sharethis 插件,它会在鼠标悬停事件时弹出共享窗口。但我只需要在 Onclick 事件上弹出。

<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">
stLight.options({
    publisher:"c7a25472-030e-48ce-b630-a71f99cc53d9"
});
</script>
<span class="st_sharethis_custom" displayText="Share">Share</span>

所以你能建议我如何做到这一点。

4

2 回答 2

6

onhover属性设置为false应该适合您:

stLight.options({
    publisher:"c7a25472-030e-48ce-b630-a71f99cc53d9",
    onhover: false
});
于 2013-10-23T08:17:24.553 回答
0

var addthis_config = { ui_click: true } ui_click 如果为 true,则压缩菜单仅在单击时出现。

于 2013-10-23T08:20:56.550 回答