我一直在编写此代码来为 ShareThis 实现一个可单击的“共享”按钮,例如,而不是在用户将鼠标悬停在按钮上时弹出 ShareThis 窗口的代码。使其工作的关键是 onmouseover:false 设置:
<script language="javascript" type="text/javascript">
var object = SHARETHIS.addEntry({
title: "<?php the_title(); ?>",
url: "<?php the_permalink(); ?>"},
{button:false,onmouseover:false});
document.write('<span id="<?php the_title(); ?>"><a href="javascript:void(0);">Share</a></span>');
var element = document.getElementById("<?php the_title(); ?>");
object.attachButton(element);
</script>
问题是 onmouseover:false 设置会导致关闭按钮 (X) 在弹出窗口中停止工作(各种 ShareThis 控件都可以工作)。是否有任何解决方法可以使该功能再次运行?