学做网站培训课程介绍

当前位置:

《“急求国外大型社交网站分享代码”》 有 1 条评论

  1. 学做网站论坛讲师 学做网站讲师说道:

    很多网站都有社会化分享按钮代码,下面介绍将当前页面分享到facebook、twitter、Plurk等国外社交网站的代码:
    Facebook (官方小工具)

    <!--Facebook分享按鈕(純HTML語法)-->
    <a target="_blank" href="http://www.facebook.com/share.php?u=分享網址">
    <img title="分享到臉書!" src="圖片網址" border="0" width="20" /></a>
         
    <!--Facebook分享按鈕(JavaScript語法)-->
    <a href="javascript: void(window.open('http://www.facebook.com/share.php?u='.concat(encodeURIComponent(location.href)) ));">
    <img title="分享到臉書!" src="圖片網址" border="0" width="20" /></a>
         
    <!--Facebook分享按鈕(WordPress參考語法)-->
    <a target="_blank" href="http://www.facebook.com/share.php?u=<?php the_permalink(); ?>">
    <img title="分享到臉書!" src="圖片網址" border="0" width="20" /></a>

    Plurk

    <!--Plurk分享按鈕(純HTML語法)-->
    <a target="_blank" href="http://plurk.com/?qualifier=shares&status=[分享] 分享網址 (網址標題)">
    <img title="分享到噗浪!" src="圖片網址" border="0" width="20" /></a>
         
    <!--Plurk分享按鈕(JavaScript語法)-->
    <a href="javascript: void(window.open('http://www.plurk.com/?qualifier=shares&status=' .concat(encodeURIComponent(location.href)) .concat(' ') .concat('&#40;') .concat(encodeURIComponent(document.title)) .concat('&#41;')));">
    <img title="分享到噗浪!" src="圖片網址" border="0" width="20" /></a>
         
    <!--Plurk分享按鈕(WordPress參考語法)-->
    <a target="_blank" href="http://plurk.com/?qualifier=shares&status=[分享] <?php the_permalink(); ?> (<?php the_title(); ?>)">
    <img title="分享到噗浪!" src="圖片網址" border="0" width="20" /></a>

    Twitter

    <!--Twitter分享按鈕(純HTML語法)-->
    <a target="_blank" href="http://twitter.com/home/?status=網址標題 分享網址">
    <img title="分享到維特!" src="圖片網址" border="0" width="20" /></a>
         
    <!--Twitter分享按鈕(JavaScript語法)-->
    <a href="javascript: void(window.open('http://twitter.com/home/?status='.concat(encodeURIComponent(document.title)) .concat(' ') .concat(encodeURIComponent(location.href))));">
    <img title="分享到維特!" src="圖片網址" border="0" width="20" /></a>
         
    <!--Twitter分享按鈕(WordPress參考語法)-->
    <a target="_blank" href="http://twitter.com/home/?status=<?php the_title(); ?> <?php the_permalink(); ?>">
    <img title="分享到維特!" src="圖片網址" border="0" width="20" /></a>

    或者使用JiaThis – 社会化分享按钮及移动端分享代码

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注

相关教程