gpt4 book ai didi

javascript - 使用 javascript 设置 Google +1 按钮 url

转载 作者:行者123 更新时间:2023-11-29 16:23:34 26 4
gpt4 key购买 nike

我正在构建一个基于 slider 并通过 javascript 加载新图像的图片库,并且需要通过 javascript 设置 Google +1 按钮的 URL,以便可以在每个图像上设置 +1。

我还需要根据每个图像重新加载 +1 按钮(url 将有一个包含图像 ID 的查询字符串参数以使其唯一)。这可能吗?

最佳答案

<!-- Place this tag where you want the +1 button to render -->
<div class="g-plusone" data-annotation="inline" data-href="#"></div>

<!-- Place this render call where appropriate -->
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();

您可以使用以下代码通过 jQuery 更改 gplus href 属性。确保首先包含 jquery 库,然后使用下面的代码:

<script type="text/javascript">
jQuery(".your-button").click(function(){
jQuery(".g-plusone").attr("data-href","Your-Value-Goes-Here");
});
</script>

关于javascript - 使用 javascript 设置 Google +1 按钮 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8596796/

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