0

所以我将这个分享按钮插件用于 twitter 和 facebook。但是,我不明白在按下按钮时应该更改什么来获取我的 URL 和标题。请帮忙。

html:

<a onclick="Share.facebook('URL','TITLE','IMG_PATH','DESC')"> {sharing is sexy}</a>
<a onclick="Share.twitter('URL','TITLE')"> {sharing is sexy}</a>

JS:

Share = {
    facebook: function(purl, ptitle, pimg, text) {
        url = 'http://www.facebook.com/sharer.php?s=100';
        url += '&p[title]=' + encodeURIComponent(ptitle);
        url += '&p[summary]=' + encodeURIComponent(text);
        url += '&p[url]=' + encodeURIComponent(purl);
        url += '&p[images][0]=' + encodeURIComponent(pimg);
        Share.popup(url);
    },
    twitter: function(purl, ptitle) {
        url = 'http://twitter.com/share?';
        url += 'text=' + encodeURIComponent(ptitle);
        url += '&url=' + encodeURIComponent(purl);
        url += '&counturl=' + encodeURIComponent(purl);
        Share.popup(url);
    },
    popup: function(url) {
        window.open(url,'','toolbar=0,status=0,width=626, height=436');
    }
};

该插件位于:http ://www.webdesign.org/html-and-css/tutorials/how-to-create-a-share-button-for-your-site.22180.html

4

1 回答 1

0

window.location.href将为您提供页面的 URL,并document.getElementsByTagName("title")为您提供页面的标题元素。

这是否回答了您的问题,或者您是否希望在按下按钮的确切时间设置这些值?

于 2013-03-21T20:33:51.900 回答