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();