我创建了一个基于 this tutorial 的自定义社交分享模块,我正在尝试理解为什么我的全屏会在新标签页中打开,但教程会打开在某些尺寸的新窗户中。
我希望我的开放方式与本教程相同,但我不确定。我知道有一种方法可以用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 。
答案 0 :(得分: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>