Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经实现了 disqus 并且工作正常。我需要手动保留评论计数。我计划在disquss评论按钮上附加,但没有任何成功。我无法通过 DOM 访问它。
有没有其他方法可以实现这一目标?
您可以使用内置回调:
function disqus_config() { this.callbacks.onNewComment = [function() { doSomething(); }]; }
当然,只需替换doSomething();为您自己的脚本即可。
doSomething();