gpt4 book ai didi

jquery - 更改 addthis 属性 `addthis:url` 并发送新的 URL 而不是加载的 URL?

转载 作者:行者123 更新时间:2023-12-01 06:49:00 26 4
gpt4 key购买 nike

我可以通过 jquery/javascript 更改 addthis 属性 addthis:url 并在不刷新页面的情况下发送新的 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加载页面时,我设法更改了addthis:url中的url,但是addthis将发送的url是主页url(这是一个加载的url),对于例如,http://mywebsite.com/是 addthis 发送的内容,但不是 http://mywebsite.com/#/store/

有什么想法吗?

最佳答案

不幸的是,仅更新 addthis:url 不会更新共享该 URL 的按钮。要更新按钮,您需要调用 addthis.toolbox 方法。根据上面的例子,我建议:

addthis.toolbox('#addthis_buttons', {}, {'url': 'http://mywebsite/' + location.hash});

假设您有一些元素围绕着按钮,其 id 为“addthis_buttons”。第二个参数可以留空,第三个参数是共享对象,因此您可以根据需要设置 url 和 title。有关 addthis.toolbox 方法的完整文档可以在这里找到:

http://support.addthis.com/customer/portal/articles/1365325-rendering-tools-with-javascript

关于jquery - 更改 addthis 属性 `addthis:url` 并发送新的 URL 而不是加载的 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17992171/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com