0

可能重复:
如何使用 javascript 打开新的浏览器窗口?

例如:http ://www.nowness.com/ > 点击“推特”

我问的不是 Twitter API,只是一个我想打开的通用窗口。可以使用 jQuery。

编辑:模态在这里是错误的术语。我想要一个弹出窗口,而不是模式。

4

2 回答 2

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>
于 2012-09-22T17:41:45.560 回答
1

您可以使用 jQuery UI。这是教程和演示:http: //jqueryui.com/demos/dialog/

于 2012-09-22T17:35:51.450 回答