是否可以使用Cheerio.js监听服务器中DOM的更改?

时间:2017-06-26 15:52:39

标签: javascript node.js cheerio

我想在DOM中发生更改时在服务器中触发一个函数。

var $ = cheerio.load('<span class="ready">WE ARE ALMOST READY!</span>');
$.html();

var textDeploy = $('.ready').text();
console.log(textDeploy);

if ( textDeploy != "WE ARE ALMOST READY!"){
  console.log("send email");
} else {
  console.log("not ready to send the email");
}

我正在记录&#34;未准备好发送电子邮件&#34;在终端中,但是当我将跨度(&#39; .ready&#39;)的文本更改为任何其他文本时,似乎cheerio正在听取更改。是否可以倾听变化?或任何其他方便的方式?谢谢!

0 个答案:

没有答案