我正在尝试动态更改addthis发送的网址。当用户更改元素时,它会更新包含自定义网址的文本区域,以便他们可以返回该网址并继续/查看其工作。
我正在创建一个像这样的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");
});
然后当网址更新时,我正在尝试更新addthis共享网址,如下所示:
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 update函数执行时,addthis共享url没有得到更新。如何强制它更新addthis url?
答案 0 :(得分:20)
如果你想在加载html后更改addthis url(如果是ajax或某些用户事件),请使用下面的hack。 Addthis apis打破了
[09/04/13 11:42:24 AM]
阳光明媚的jhunjhunwala:
addthis.update('share', 'url', 'http://www.sourcen.com');
addthis.url = "http://www.sourcen.com";
addthis.toolbox(".addthis_toolbox");
http://www.sourcen.com ---&gt;新网址
答案 1 :(得分:15)
就这么简单:
addthis.update('share', 'url', "http://www.example.com");
addthis.update('share', 'title', "Example Domain Title");
addthis.update('share', 'description', "Hello, I am a description");
干杯, 加里
答案 2 :(得分:0)
AddThis提供addthis.update(“share”,“url”,value)函数(但它是IE8中的一个错误函数);试试这个:
for(var i = 0; i < addthis.links.length; i++){
addthis.links[i].share.url= "new url";
}
答案 3 :(得分:0)
<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和标题配置。我在网页上有多个addthis按钮,每个按钮共享不同的内容。因此我添加了isSameNode
以确保我只更新了我想要的按钮。
尽管动态更改了网址和标题,但按钮(addthis:url
)中必须包含addthis:title
和<span>
属性,否则无效。
答案 4 :(得分:0)
步骤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:准备我的fancybox ajax设置;
$('.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;
}
});
上面的行&#34; afterShow()&#34;功能对于记笔记很重要;
答案 5 :(得分:0)
要自定义按钮:
<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>
答案 6 :(得分:0)
现在就可以工作
window.addthis.layers.refresh('new_url', 'new_title');
应该不存在其他配置(例如dom属性)