例如:http://www.nowness.com/>点击“Twitter”
我不是在询问Twitter API,只是一个我要打开的通用窗口。可以使用jQuery。
编辑:Modal在这里是错误的术语。我想要一个弹出窗口,而不是模态。
答案 0 :(得分:1)
您可以使用jQuery UI。 这是教程和演示:http://jqueryui.com/demos/dialog/
答案 1 :(得分:1)
只需添加您的链接
即可<a class="tweetme"
href="https://twitter.com/intent/tweet?text=yourtext&url=yoururl">
Tweet Me
</a>
和javascript
<script type="text/javascript">
$('.tweetme').click(function (event) {
var width = 575,
height = 400,
left = ($(window).width() - width) / 2,
top = ($(window).height() - height) / 2,
url = this.href,
opts = 'status=1' +
',width=' + width +
',height=' + height +
',top=' + top +
',left=' + left;
window.open(url, 'twitte', opts);
return false;
});
</script>