I would like to write a small script to monitor the disqus comments added on a page and fire some notification callbacks whenever new comments are added.
我最简单的办法是定期监测#dsq-comments div的内容,并在修改其html内容时触发警示。
虽然这项工作将继续下去,但我不知道那里是否有任何更清洁的方法?
<><>Edit>: 正如“Pekka i”所建议的那样,在我的上安装了新配电。 这是我的主要关切之一,即把我与site。 现在,我有一个可行的解决办法。
function disqus_config() {
this.callbacks.onNewComment = [function() {
$.get("/notifications/newcomment?...", function(data) {
});
}];
}