我正在使用以下代码,它完成了我想要它做的 3 件事中的 2 件事,与自定义 Twitter 按钮共享动态内容:
<script type="text/javascript">
// <![CDATA[
var twtTitle = document.title;
var twtUrl = location.href;
var maxLength = 140 - (twtUrl.length + 1);
if (twtTitle.length > maxLength) {
twtTitle = twtTitle.substr(0, (maxLength - 3)) + '...';
}
var twtLink = 'http://twitter.com/home?status=' + encodeURIComponent(twtTitle + ' ' + twtUrl);
document.write('<a href="' + twtLink + '" target="_blank"' + '><img src="images/twitter.png" border="0" alt="Tweet This!" /' + '><' + '/a>');
// ]]>
</script>
我希望它做的也是在窗口中弹出而不是全页视图。我对脚本的了解有限,所以我不知道在哪里插入适当的弹出代码。
有什么帮助吗?