用户使用Addthis后显示的优惠券

发布于 2024-10-14 10:05:23 字数 220 浏览 1 评论 0原文

我看到 addthis 有一些示例代码可能会有所帮助: http://www.addthis.com/ help/client-api#events

在我的注册表单中,如果他们共享我的网站,我想在输入文本字段中显示优惠券代码。关于我如何做到这一点有什么想法吗?

I see addthis has some sample code that may help: http://www.addthis.com/help/client-api#events

In my registration form, I want to display a coupon code in an input text field IF they share my site. Any ideas on how I could do this?

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

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

发布评论

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

评论(1

婴鹅 2024-10-21 10:05:23

在 HTML 中,为您的输入字段提供一个 id,以便稍后可以引用它:

<input type="text" id="coupon-code" value="">

然后,这是 addthis 侦听器:

<script type="text/javascript">
    addthis.addEventListener('addthis.menu.share', function(evt) {
        // Show coupon code
        document.getElementById('coupon-code').value = "CODE12345";
    });
</script>

In the HTML, give your input field an id so you can reference it later:

<input type="text" id="coupon-code" value="">

Then, here's the addthis listener:

<script type="text/javascript">
    addthis.addEventListener('addthis.menu.share', function(evt) {
        // Show coupon code
        document.getElementById('coupon-code').value = "CODE12345";
    });
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文