2016-04-20 41 views
0

我創建了一個基於this tutorial的自定義社交分享模塊,並且試圖理解爲什麼我會在全屏幕中以新選項卡打開,但教程在特定大小的新窗口中打開。自定義社交分享不在Windows中打開?

我希望我的開放方式與本教程相同,但我不確定。我知道有一種方法,我可以通過JS來定義窗口的大小,但這似乎並不是我最優雅的解決方案。

感謝幫助!

這裏是一個鏈接的基本HTML:

<a class="fa fa-twitter share-base share-twitter" onclick="window.open('https://twitter.com/intent/tweet?text=the text')"></a> 

,這裏是我的module's prototype

+1

喜歡這張'的window.open( 「」, 「」,「寬度= 200,高度= 100 「);' –

+1

@AdamBuchananSmith漂亮,謝謝! –

回答

2

只需添加大小window.open內部這樣的:

<a class="fa fa-twitter share-base share-twitter" onclick="window.open('https://twitter.com/intent/tweet?text=the text','','width=200,height=100')">test</a> 

參見撥弄:https://jsfiddle.net/1a8mpL75/1/