例如:http ://www.nowness.com/ > 点击“推特”
我问的不是 Twitter API,只是一个我想打开的通用窗口。可以使用 jQuery。
编辑:模态在这里是错误的术语。我想要一个弹出窗口,而不是模式。
例如:http ://www.nowness.com/ > 点击“推特”
我问的不是 Twitter API,只是一个我想打开的通用窗口。可以使用 jQuery。
编辑:模态在这里是错误的术语。我想要一个弹出窗口,而不是模式。
只需添加您的链接
<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>
您可以使用 jQuery UI。这是教程和演示:http: //jqueryui.com/demos/dialog/