web-dev-qa-db-ja.com

jQueryを使用してAddThisURLを動的に変更する

Addthisによって送信されたURLを動的に変更しようとしています。ユーザーが要素を変更すると、カスタムURLを含むテキスト領域が更新されるため、ユーザーはそのURLに戻って、作業を続行/表示できます。

私はそういうようにaddthisボタンを作成しています(彼らのAPIドキュメントから):

var addthis_share = {url:"http://www.johndoe.com"}
$(document).ready(function(){
    var tbx = document.getElementById("toolbox"),
    svcs = {email: 'Email', print: 'Print', facebook: 'Facebook', expanded: 'More'};
    for (var s in svcs) {
        tbx.innerHTML += '<a class="addthis_button_'+s+'">'+svcs[s]+'</a>';
    }
    addthis.toolbox("#toolbox");
});

次に、URLが更新されると、addthis共有URLを次のように更新しようとしています。

function updateURL(){
    ...get some variables here and generate a new url
    var newURL="http://the.url.i.want.to.share.com";
    $('#tagUrl').val(newURL);
    //addthis_share = {url:newURL}
    addthis_share = {url:newURL}
    addthis.toolbox("#toolbox");
} 

元のボタンが生成され、正しいURLが含まれていますが、URL更新機能を実行すると、addthis共有URLが更新されません。 addthis URLを強制的に更新するにはどうすればよいですか?

17
maddogandnoriko

HTMLの読み込み後にaddthisURLを変更する場合(ajaxまたは一部のユーザーイベントの場合)、以下のハックを使用してください。 Addthisapisは[09/04/13 11:42:24 AM]sunny jhunjhunwalaのように壊れています:

addthis.update('share', 'url', 'http://www.sourcen.com'); 
addthis.url = "http://www.sourcen.com";                
addthis.toolbox(".addthis_toolbox");

http://www.sourcen.com --->新しいURL

23
sunnyuff

これと同じくらい簡単です:

addthis.update('share', 'url', "http://www.example.com");
addthis.update('share', 'title', "Example Domain Title");
addthis.update('share', 'description', "Hello, I am a description");

乾杯、ゲイリー

16
Gary

ボタンをカスタマイズするには:

<a class="addthis_button_compact" >
   <img src="./images/share.png" width="36" height="36" border="0" alt="Share" />
</a>

ヘッドパート:

<meta property="og:title" content="YOUR TITLE" />
<meta property="og:description" content="YOUR DESCRIPTION" />
<meta property="og:image" content="YOUR IMAGE URL" />

ボディ部分:私の場合、phpを使用しています。このようにボディ属性を設定します。

<body
      data-url="<?php echo basename($_SERVER['REQUEST_URI']); ?>"
      data-title="<?php echo $info->record_info->brand; ?>"
      data-description="<?php echo $info->record_info->description; ?>"
      data-media="<?php echo ./uploads/logos/<?php echo $info->record_info->logo; ?>"
>

コンテンツを動的に更新するには(JSパート):

<script>
    addthis.update('share', 'url', $('body').data('url')); // will set the URL
    addthis.update('share', 'title', $('body').data('title')); // will set the title
    addthis.update('share', 'description', $('body').data('description')); // will set the description
    addthis.update('share', 'media', $('body').data('media')); // will set the image if you are sharing
</script>
1
zarpio

AddThisは、addthis.update( "share"、 "url"、value)関数を提供します(ただし、IE8ではバグのある関数です)。これを試してください:

for(var i = 0; i < addthis.links.length; i++){
    addthis.links[i].share.url= "new url";
}
0
ronnyfm

ステップ-1:他のHTMLでロードされるajaxコンテンツを準備します。

<div class="addthis_sharing_toolbox-CUSTOM" data-url="<?php my_dynamic_link(); ?>" data-title="<?php my_dynamic_title(); ?>">
    <a class="addthis_button_email" style="cursor:pointer"></a>
    <a class="addthis_button_facebook" style="cursor:pointer"></a>
    <a class="addthis_button_Twitter" style="cursor:pointer"></a>
    <a class="addthis_button_linkedin" style="cursor:pointer"></a>
</div>

ステップ-2:fancyboxajaxセットアップを準備します。

$('.popUpBtn').fancybox({
    //....other fancybox settings can go here...
    //....
    afterShow   : function(current, previous){
        //addthis.init();
        addthis.update('share', 'url', $('.fancybox-inner .addthis_sharing_toolbox-CUSTOM').data('url'));
        addthis.update('share', 'title', $('.fancybox-inner .addthis_sharing_toolbox-CUSTOM').data('title'));
        //addthis.update('share', 'description', "Hello, I am a description");
        addthis.toolbox('.addthis_sharing_toolbox-CUSTOM'); //-->Important: this selector should not be anything from the addthis settings page; We can choose any other names like normal selectors;
    }
});

「afterShow()」関数内の上記の行は、メモをとるために重要です。

0
Reza Mamun
<span id="share-obj" addthis:url="" addthis:title=""></span>

<script type="text/javascript">
    var shareConfig = {url: '', title: ''};

    addthis.button('#share-obj', {}, shareConfig);

    addthis.addEventListener('addthis.menu.open', function(event){
        if ( ! event.data.element.isSameNode($('#share-obj')[0])) {
            return;
        }

        event.data.share.title = shareConfig.title;
        event.data.share.url = shareConfig.url;
    });

    // in updateURL() or any other place during runtime...
    function updateURL() {
        shareConfig.url = 'http://different.url';
        shareConfig.title = 'Title changed dynamically...';
    }
</script>

グローバル変数shareConfigを使用して、URLとタイトルの構成を追跡しました。 Webページに複数のaddthisボタンがあり、それぞれが異なるコンテンツを共有しています。したがって、必要なボタンのみを更新するようにisSameNodeを追加しました。

URLとタイトルは動的に変更されますが、addthis:urlおよびaddthis:title属性はボタンに存在する必要があります(<span>)、そうでないと機能しません。

0
hongster