これはMutationObserverで行うことができます。
あなたが関数に質問に答えるのコードを入れた場合answerQuestions
と呼ばれ、その後、このようなものは、(上記のリンクの例から適応)あなたのために働くかもしれない:
// select the target node
var target = document.getElementById('question-container');
// create an observer instance
var observer = new MutationObserver(function(mutations) {
answerQuestions();
});
// configuration of the observer:
var config = { attributes: true, childList: true, characterData: true };
// pass in the target node, as well as the observer options
observer.observe(target, config);
// later, you can stop observing
observer.disconnect();
出典
2017-11-18 14:47:07
JRI
あなたはGreasemonkeyのにAJAXリクエストを送ることができますあなたのHTMLページを更新しますか? – Max08
http://jsfiddle.net/t2AzN/14/ – hcttepe
はい、ですが、十分なコードを投稿していないと、AJAXの質問があるページを投稿していませんでしたか? –