我可以addthis:url
通过 jquery/javascript 更改 addthis 属性并在不刷新页面的情况下发送新的 url 吗?
$(".button-addthis").attr("addthis:url", "http://mywebsite/" + location.hash); // example: http://mywebsite.com/#/store/
$(".button-addthis").click(function(){
alert($(this).attr("addthis:url")); // example: http://mywebsite.com/#/store/
});
当通过ajax加载页面时,我设法更改了中的url addthis:url
,但是addthis将发送的url是主页url(这是一个加载的url),例如http://mywebsite.com/就是addthis发送但不发送http://mywebsite.com/#/store/
有任何想法吗?