ShareThis 按钮在移动设备上不起作用,当我点击它时没有模态 window 或弹出窗口
ShareThis button not working on mobile, when I click on it there's no modal window or popup
我用 Laravel 制作了 this 网站。网站上有一个用于共享内容的自定义 ShareThis 按钮。它在我的台式机上工作正常,但在我的手机上似乎没有任何作用。
这些在 head 标签中:
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "a499bbb4-baeb-49f5-9211-1489057bb6b5", doNotHash: false, doNotCopy: false, hashAddressBar: false, onhover: false});</script>
这是自定义按钮:
<span class='st_sharethis_custom' st_url="{{ url('/'.$quote->quote_id) }}" st_summary="{{ $quote->quote_text or "" }}" id="sharethis"><div class="round-share"><i class="fa fa-share-alt" aria-hidden="true"></i></div></span>
我也尝试将 CSS 直接分配给 span 标签,但在移动设备上都不起作用:
<span class='round-share st_sharethis_custom' st_url="{{ url('/'.$quote->quote_id) }}" st_summary="{{ $quote->quote_text or "" }}" id="sharethis"><i class="fa fa-share-alt" aria-hidden="true"></i></span>
我将我的页面从 http 移到了 https,this 导致了问题。
我需要更改这一行:
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
到这一行:
<script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>
我用 Laravel 制作了 this 网站。网站上有一个用于共享内容的自定义 ShareThis 按钮。它在我的台式机上工作正常,但在我的手机上似乎没有任何作用。
这些在 head 标签中:
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "a499bbb4-baeb-49f5-9211-1489057bb6b5", doNotHash: false, doNotCopy: false, hashAddressBar: false, onhover: false});</script>
这是自定义按钮:
<span class='st_sharethis_custom' st_url="{{ url('/'.$quote->quote_id) }}" st_summary="{{ $quote->quote_text or "" }}" id="sharethis"><div class="round-share"><i class="fa fa-share-alt" aria-hidden="true"></i></div></span>
我也尝试将 CSS 直接分配给 span 标签,但在移动设备上都不起作用:
<span class='round-share st_sharethis_custom' st_url="{{ url('/'.$quote->quote_id) }}" st_summary="{{ $quote->quote_text or "" }}" id="sharethis"><i class="fa fa-share-alt" aria-hidden="true"></i></span>
我将我的页面从 http 移到了 https,this 导致了问题。
我需要更改这一行:
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
到这一行:
<script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>