Google+ 图标会自动在 HOVER 上共享页面,并且不需要像其他图标那样点击。有什么办法可以解决这个问题,需要像其他人一样点击 [fb,twitter] 并像 Twitter 共享图标一样加载弹出窗口?
问问题
5964 次
1 回答
8
JavaScriptwindow.open
方法将打开一个新窗口。您可以将此技术与共享链接相结合来实现您的目标。这是从官方文档中提取的这种技术的示例。只需将您的目标网址替换为http://example.com
.
<a href="https://plus.google.com/share?url=http://example.com"
onclick="javascript:window.open('http://example.com','',
'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');
return false;">
<img src="https://www.gstatic.com/images/icons/gplus-64.png"
alt="Share on Google+"/>
</a>
于 2012-05-10T14:56:53.987 回答