gpt4 book ai didi

javascript - 将 click() 事件附加到 google plus 按钮?

转载 作者:搜寻专家 更新时间:2023-11-01 04:57:49 24 4
gpt4 key购买 nike

我想在用户点击“g+”按钮时在页面上添加一条提醒消息。我怎样才能做到这一点?
这是代码:

<g:plusone href="http://test.com//" annotation="inline" width="300"></g:plusone> 
<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);
})();
</script>

最佳答案

如果您需要一些代码来帮助您入门,以下标记将启用 +1 按钮中的交互事件:

<div
class="g-plusone"
data-expandto="bottom"
data-onendinteraction="onEnded"
data-onstartinteraction="onStarted"
data-recommendations="false"
data-annotation="inline"
data-height="25"
data-autoclose="true"
data-callback="onCallback"
data-width="300"
>

以下代码将处理事件:

function onStarted(args){
console.log("started");
console.log(args);
}
function onEnded(args){
console.log("ended");
console.log(args);
}
function onCallback(args){
console.log("callback");
console.log(args);
}

回调将返回按钮的 +1 状态,开始/结束交互表示用户状态。您可以看到所有事件的演示 here .

关于javascript - 将 click() 事件附加到 google plus 按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14421762/

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