我想知道是否有一种方法可以仅使用HTML为Facebook,Twitter和Google +1创建“共享”按钮,而且不需要在任何时候将任何Javascript插入到代码中。
例如,您可以使用下面描述的方法动态创建这些按钮;然而,他们最终都动态加载Javascript并在幕后创建自己的代码:
答案 0 :(得分:24)
以下链接将注册相应的喜欢,推文和+ 1:
这些链接适用于Wordpress:
实
<a href="http://www.facebook.com/sharer.php?u=<?php if(is_home()){echo home_url();}else{the_permalink();} ?>" target="_blank" title="Share this page on Facebook">Like</a>
微博
<a href="http://twitter.com/share?url=<?php if(is_home()){echo home_url();}else{the_permalink();} ?>&text=<?php the_title(); ?>" target="_blank" title="Tweet this page on Twitter">Tweet</a>
Google +1
<a href="https://plusone.google.com/_/+1/confirm?hl=en&url=<?php if(is_home()){echo home_url();}else{the_permalink();} ?>" target="_blank" title="Plus one this page on Google">+1</a>
答案 1 :(得分:6)
谷歌加上没有在上面的例子中工作。
我用这个用于google plus。
<div id="custom-google-button">
<a href="https://plus.google.com/share?&hl=en&url=YOUR_URL_to_share" target="_blank">google+</a>
</div>
在Wordpress中:
<a href="https://plus.google.com/share?hl=en&url=<?php if(is_home()){echo home_url();}else{the_permalink();} ?>" target="_blank" title="Plus one this page on Google">google+</a>
Linkedin:
<div id="custom-linkedin-button">
<a href="http://www.linkedin.com/shareArticle?mini=true&url=YOUR_URL_to_share" target="_blank">Linkedin</a>
</div>
在Wordpress中:
<a href="http://www.linkedin.com/shareArticle?mini=true&url=<?php if(is_home()){echo home_url();}else{the_permalink();} ?>" target="_blank">Linkedin</a>
来源:
答案 2 :(得分:2)
这是一篇非常有用的文章,它提供了您正在寻找的答案,而不使用任何PHP - http://www.hanselman.com/blog/AddSocialSharingLinksToYourBlogWithoutWidgetJavaScript.aspx
<强> TWITTER 强>
<a href="https://twitter.com/intent/tweet?url=YOURURLHERE&text=YOURPOSTTITLEHERE&via=YOURTWITTERNAMEHERE">Twitter</a>
<强> FACEBOOK 强>
<a href="https://facebook.com/sharer.php?u=YOURURLHERE">Facebook</a>
<强> GOOGLE + 强>
<a href="https://plus.google.com/share?url=YOURURLHERE">Google+</a>