在 AddThis 中自定义 URL

发布于 2024-08-06 05:54:15 字数 65 浏览 3 评论 0原文

我如何访问 addthis 中生成的 URL 并在通过电子邮件发送给其他人之前附加查询字符串?

谢谢

How can i access the URL generated in addthis and append a query string before it gets emailed to other persons?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愛放△進行李 2024-08-13 05:54:15

从他们的网站:

要定义要共享的 URL,您可以通过四种方式之一进行操作。为了我们的
最新的工具,使用 data-url 和 data-title 参数,如下所示:

如果您使用的代码中有 addthis_toolbox,请使用
addthis:url 和 addthis:title 参数,如下所示:

或者你可以使用 addthis_share 变量来设置它,该变量会改变
页面上所有 AddThis 工具共享的 URL 和标题:

<脚本类型=“text/javascript”> 
    var addthis_share = {    
        网址:“网址”    
        标题:“标题” 
   }

无论如何,请务必将 URL 和 THE TITLE 替换为 URL 和
要共享的页面标题。

From their site:

To define the URL to share you do it in one of four ways. For our
newest tools, use the data-url and data-title parameters, like this:

<div class="addthis_sharing_toolbox" 
     data-url="THE URL" 
     data-title="THE TITLE">
</div>

If the code you're using has the addthis_toolbox in it, use the
addthis:url and addthis:title parameters, like this:

<div class="addthis_toolbox addthis_default_style " 
     addthis:url="THE URL" 
     addthis:title="THE TITLE">

or you can set it using the addthis_share variable, which will change
the URL and title shared for all the AddThis tools on the page:

<script type="text/javascript"> 
    var addthis_share = {    
        url: "THE URL"    
        title: "THE TITLE" 
   }
</script>

In any case, be sure to replace THE URL and THE TITLE with the URL and
title of the pages to share.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文