Facebook 点赞按钮每 1,000 个“点赞”就会更新一次值。它可以在每次点赞时更新吗?
我想您已经意识到,当您在网站上时,单击“喜欢”按钮(带有计数器),它通常会像第一个那样逐个更新。直到达到 1000 个“赞”,然后开始每 1000 个“赞”更新一次。
所以你可以这样:
0 喜欢
1 喜欢
2 喜欢
..
..
100 喜欢
..
..
999 喜欢
1000 喜欢(然后它不会更新 onclick 直到)
2000 喜欢(然后它不会更新 onclick 直到)
3000 喜欢(然后它不会更新onclick 直到)
...
有没有办法在每次点击时更新值?
I guess you realised that, when on a website, you click on the 'like' button -with counter- it normally updates one like by one like in the first ones. Until it reaches 1000 'likes', then it starts updating every 1000 'likes'.
So you could se:
0 likes
1 like
2 likes
..
..
100 likes
..
..
999 likes
1000 likes (then it's not updated onclick until)
2000 likes (then it's not updated onclick until)
3000 likes (then it's not updated onclick until)
...
Is there a way to update the value on every click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以自己查询确切的“喜欢”计数并创建自定义计数器。
PHP 中的示例
您可以在 http://askdavid.com 上查看此示例
You can query the exact 'like' count yourself and create a custom counter.
example in PHP
You can see a working example of this on http://askdavid.com
您可以将布局样式设置为标准而不是框数。但框计数的工作方式是显示一个四舍五入的数字,并且当前不可配置。您可以在他们的错误跟踪工具上记录功能请求。
You could set layout style to standard instead of the box count. But the way box count works is that it displays a rounded number and that isn't currently configurable. You could log a feature request on their bug tracker tool.